@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**.
13 lines • 326 B
TypeScript
import type { ChatMessageContent } from './chat-message-content.js';
/**
* Representation of the 'ToolChatMessage' schema.
*/
export type ToolChatMessage = {
/**
* @example "tool"
*/
role: 'tool';
tool_call_id: string;
content: ChatMessageContent;
};
//# sourceMappingURL=tool-chat-message.d.ts.map