UNPKG

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

10 lines 323 B
import type { ImageContentUrl } from './image-content-url.js'; /** * Representation of the 'UserChatMessageContentItem' schema. */ export type UserChatMessageContentItem = { type: 'text' | 'image_url'; text?: string; image_url?: ImageContentUrl; }; //# sourceMappingURL=user-chat-message-content-item.d.ts.map