UNPKG

@sap-ai-sdk/foundation-models

Version:

SAP Cloud SDK for AI is the official Software Development Kit (SDK) for **SAP AI Core**, **SAP Generative AI Hub**, and **Orchestration Service**.

12 lines 596 B
/** * Options for streaming response. Only set this when you set `stream: true`. * */ export type AzureOpenAiChatCompletionStreamOptions = ({ /** * If set, an additional chunk will be streamed before the `data: [DONE]` message. The `usage` field on this chunk shows the token usage statistics for the entire request, and the `choices` field will always be an empty array. All other chunks will also include a `usage` field, but with a null value. * */ include_usage?: boolean; } & Record<string, any>) | null; //# sourceMappingURL=chat-completion-stream-options.d.ts.map