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 389 B
/** * Generic module result */ export type GenericModuleResult = { /** * Some message created from the module * @example "Masking module executed successfully on LLM input." */ message: string; /** * Additional data object from the module */ data?: Record<string, any>; } & Record<string, any>; //# sourceMappingURL=generic-module-result.d.ts.map