import type { ChatDelta } from './chat-delta.js'; import type { ChoiceLogprobs } from './choice-logprobs.js'; /** * Representation of the 'LlmChoiceStreaming' schema. */ export type LlmChoiceStreaming = { /** * Index of the choice */ index: number; delta: ChatDelta; logprobs?: ChoiceLogprobs; /** * Reason for stopping the model */ finish_reason?: string; } & Record; //# sourceMappingURL=llm-choice-streaming.d.ts.map