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

20 lines 778 B
import type { AzureOpenAiChatCompletionRequestUserMessageContentPart } from './chat-completion-request-user-message-content-part.js'; /** * Representation of the 'AzureOpenAiChatCompletionRequestUserMessage' schema. */ export type AzureOpenAiChatCompletionRequestUserMessage = { /** * The contents of the user message. * */ content: string | AzureOpenAiChatCompletionRequestUserMessageContentPart[]; /** * The role of the messages author, in this case `user`. */ role: 'user'; /** * An optional name for the participant. Provides the model information to differentiate between participants of the same role. */ name?: string; } & Record<string, any>; //# sourceMappingURL=chat-completion-request-user-message.d.ts.map