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

7 lines 358 B
import type { LLMModuleResultSynchronous } from './llm-module-result-synchronous.js'; import type { LLMModuleResultStreaming } from './llm-module-result-streaming.js'; /** * Output of LLM module. Follows the OpenAI spec. */ export type LlmModuleResult = LLMModuleResultSynchronous | LLMModuleResultStreaming; //# sourceMappingURL=llm-module-result.d.ts.map