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