UNPKG

@sap-ai-sdk/ai-api

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 298 B
import type { AiId } from './ai-id.js'; import type { AiApiError } from './ai-api-error.js'; /** * Representation of the 'AiApiErrorWithId' schema. */ export type AiApiErrorWithId = { id: AiId; error: AiApiError; } & Record<string, any>; //# sourceMappingURL=ai-api-error-with-id.d.ts.map