/** * This file was auto-generated by Fern from our API Definition. */ import * as Vellum from "../index"; /** * The data returned for each delta during the prompt execution stream. */ export interface StreamingAdHocExecutePromptEvent { state: "STREAMING"; output: Vellum.PromptOutput; outputIndex: number; executionId: string; meta?: Vellum.AdHocStreamingPromptExecutionMeta; /** The subset of the raw response from the model that the request opted into with `expand_raw`. */ raw?: Record; }