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

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