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**.

19 lines 746 B
import type { ModuleResultsStreaming } from './module-results-streaming.js'; import type { LLMModuleResultStreaming } from './llm-module-result-streaming.js'; import type { ErrorStreaming } from './error-streaming.js'; /** * Representation of the 'CompletionPostResponseStreaming' schema. */ export type CompletionPostResponseStreaming = { /** * ID of the request */ request_id: string; intermediate_results?: ModuleResultsStreaming; final_result?: LLMModuleResultStreaming; /** * List of errors encountered during processing for unsuccessful modules configurations */ intermediate_failures?: ErrorStreaming[]; } & Record<string, any>; //# sourceMappingURL=completion-post-response-streaming.d.ts.map