@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**.
10 lines • 427 B
TypeScript
import type { AzureOpenAiInnerErrorCode } from './inner-error-code.js';
import type { AzureOpenAiContentFilterPromptResults } from './content-filter-prompt-results.js';
/**
* Inner error with additional details.
*/
export type AzureOpenAiInnerError = {
code?: AzureOpenAiInnerErrorCode;
content_filter_results?: AzureOpenAiContentFilterPromptResults;
} & Record<string, any>;
//# sourceMappingURL=inner-error.d.ts.map