@sap-ai-sdk/foundation-models
Version:
SAP Cloud SDK for AI is the official Software Development Kit (SDK) for **SAP AI Core**, **SAP Generative AI Hub**, and **Orchestration Service**.
15 lines • 556 B
TypeScript
import type { AzureOpenAiChatCompletionRequestMessage } from './chat-completion-request-message.js';
/**
* Representation of the 'AzureOpenAiChatCompletionRequestMessageTool' schema.
*/
export type AzureOpenAiChatCompletionRequestMessageTool = AzureOpenAiChatCompletionRequestMessage & {
/**
* Tool call that this message is responding to.
*/
tool_call_id: string;
/**
* The contents of the message.
*/
content: string | null;
} & Record<string, any>;
//# sourceMappingURL=chat-completion-request-message-tool.d.ts.map