@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**.
20 lines • 469 B
TypeScript
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