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 468 B
import type { ModuleConfigs } from './module-configs.js'; import type { GlobalStreamOptions } from './global-stream-options.js'; /** * Representation of the 'OrchestrationConfig' schema. */ export type OrchestrationConfig = { module_configurations: ModuleConfigs; /** * If true, the response will be streamed back to the client */ stream?: boolean; stream_options?: GlobalStreamOptions; }; //# sourceMappingURL=orchestration-config.d.ts.map