UNPKG

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

19 lines 699 B
import type { AzureOpenAiChatCompletionRequestToolMessageContentPart } from './chat-completion-request-tool-message-content-part.js'; /** * Representation of the 'AzureOpenAiChatCompletionRequestToolMessage' schema. */ export type AzureOpenAiChatCompletionRequestToolMessage = { /** * The role of the messages author, in this case `tool`. */ role: 'tool'; /** * The contents of the tool message. */ content: string | AzureOpenAiChatCompletionRequestToolMessageContentPart[]; /** * Tool call that this message is responding to. */ tool_call_id: string; } & Record<string, any>; //# sourceMappingURL=chat-completion-request-tool-message.d.ts.map