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

14 lines 534 B
import type { ModuleResultsStreaming } from './module-results-streaming.js'; import type { LLMModuleResultStreaming } from './llm-module-result-streaming.js'; /** * Representation of the 'CompletionPostResponseStreaming' schema. */ export type CompletionPostResponseStreaming = { /** * ID of the request */ request_id: string; module_results?: ModuleResultsStreaming; orchestration_result?: LLMModuleResultStreaming; } & Record<string, any>; //# sourceMappingURL=completion-post-response-streaming.d.ts.map