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

17 lines 529 B
import type { AzureOpenAiImageResult } from './image-result.js'; /** * Representation of the 'AzureOpenAiGenerateImagesResponse' schema. */ export type AzureOpenAiGenerateImagesResponse = { /** * The unix timestamp when the operation was created. * @example "1676540381" * Format: "unixtime". */ created: number; /** * The result data of the operation, if successful */ data: AzureOpenAiImageResult[]; } & Record<string, any>; //# sourceMappingURL=generate-images-response.d.ts.map