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

11 lines 320 B
import type { MessageToolCalls } from './message-tool-calls.js'; /** * Representation of the 'ResponseChatMessage' schema. */ export type ResponseChatMessage = { role: 'assistant'; content?: string; refusal?: string; tool_calls?: MessageToolCalls; }; //# sourceMappingURL=response-chat-message.d.ts.map