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

11 lines 412 B
import type { AzureOpenAiErrorBase } from './error-base.js'; import type { AzureOpenAiDalleInnerError } from './dalle-inner-error.js'; /** * Representation of the 'AzureOpenAiDalleError' schema. */ export type AzureOpenAiDalleError = AzureOpenAiErrorBase & { param?: string; type?: string; inner_error?: AzureOpenAiDalleInnerError; } & Record<string, any>; //# sourceMappingURL=dalle-error.d.ts.map