UNPKG

@sap-ai-sdk/orchestration

Version:

SAP Cloud SDK for AI is the official Software Development Kit (SDK) for **SAP AI Core**, **SAP Generative AI Hub**, and **Orchestration Service**.

9 lines 277 B
import type { Error } from './error.js'; import type { ErrorList } from './error-list.js'; /** * Representation of the 'ErrorResponse' schema. */ export type ErrorResponse = { error: Error | ErrorList; } & Record<string, any>; //# sourceMappingURL=error-response.d.ts.map