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

14 lines 403 B
/** * Representation of the 'AzureOpenAiChatCompletionRequestMessageContentPartText' schema. */ export type AzureOpenAiChatCompletionRequestMessageContentPartText = { /** * The type of the content part. */ type: 'text'; /** * The text content. */ text: string; } & Record<string, any>; //# sourceMappingURL=chat-completion-request-message-content-part-text.d.ts.map