UNPKG

@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**.

14 lines 366 B
import type { ToolCallChunk } from './tool-call-chunk.js'; /** * Representation of the 'ChatDelta' schema. */ export type ChatDelta = { role?: string; content: string; /** * The refusal message generated by the model. */ refusal?: string; tool_calls?: ToolCallChunk[]; } & Record<string, any>; //# sourceMappingURL=chat-delta.d.ts.map