@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 • 380 B
TypeScript
import type { AzureOpenAiErrorBase } from './error-base.js';
import type { AzureOpenAiInnerError } from './inner-error.js';
/**
* Representation of the 'AzureOpenAiError' schema.
*/
export type AzureOpenAiError = AzureOpenAiErrorBase & {
param?: string;
type?: string;
inner_error?: AzureOpenAiInnerError;
} & Record<string, any>;
//# sourceMappingURL=error.d.ts.map