@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**.
15 lines • 330 B
JavaScript
// Generated by ts-to-zod
import { z } from 'zod';
/**
* @internal
**/
export const imageContentSchema = z
.object({
type: z.literal('image_url'),
image_url: z.object({
url: z.string(),
detail: z.string().optional()
})
})
.and(z.record(z.any()));
//# sourceMappingURL=image-content.zod.js.map