UNPKG

@sap-ai-sdk/prompt-registry

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 298 B
/** * Representation of the 'ImageContent' schema. */ export type ImageContent = { type: 'image_url'; image_url: { url: string; /** * Default: "auto". */ detail?: string; }; } & Record<string, any>; //# sourceMappingURL=image-content.d.ts.map