@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**.
12 lines • 404 B
TypeScript
import type { ChatMessageContent } from './chat-message-content.js';
import type { MessageToolCalls } from './message-tool-calls.js';
/**
* Representation of the 'AssistantChatMessage' schema.
*/
export type AssistantChatMessage = {
role: 'assistant';
content?: ChatMessageContent;
refusal?: string;
tool_calls?: MessageToolCalls;
};
//# sourceMappingURL=assistant-chat-message.d.ts.map