@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**.
29 lines • 752 B
TypeScript
import type { ModuleResultsStreaming } from './module-results-streaming.js';
/**
* Representation of the 'ErrorStreaming' schema.
*/
export type ErrorStreaming = {
/**
* @example "d4a67ea1-2bf9-4df7-8105-d48203ccff76"
*/
request_id: string;
/**
* @example 500
*/
code: number;
/**
* @example "Model name must be one of ['gpt-4o-mini', ...]"
*/
message: string;
/**
* Where the error occurred
* @example "LLM Module"
*/
location: string;
intermediate_results?: ModuleResultsStreaming;
/**
* HTTP headers returned from the failed request attempt
*/
headers?: Record<string, string>;
} & Record<string, any>;
//# sourceMappingURL=error-streaming.d.ts.map