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

15 lines 375 B
/** * Generic module result */ export type GenericModuleResult = { /** * Some message created from the module * @example "Input to LLM is masked successfully." */ message: string; /** * Additional data object from the module */ data?: Record<string, any>; } & Record<string, any>; //# sourceMappingURL=generic-module-result.d.ts.map