@sap-ai-sdk/orchestration
Version:
SAP Cloud SDK for AI is the official Software Development Kit (SDK) for **SAP AI Core**, **SAP Generative AI Hub**, and **Orchestration Service**.
18 lines • 478 B
TypeScript
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<string, any>;
//# sourceMappingURL=llm-choice-streaming.d.ts.map