UNPKG

@sap-ai-sdk/ai-api

Version:

SAP Cloud SDK for AI is the official Software Development Kit (SDK) for **SAP AI Core**, **SAP Generative AI Hub**, and **Orchestration Service**.

6 lines 216 B
/** * Execution status * @example "COMPLETED" */ export type AiExecutionStatus = 'PENDING' | 'RUNNING' | 'COMPLETED' | 'DEAD' | 'STOPPING' | 'STOPPED' | 'UNKNOWN'; //# sourceMappingURL=ai-execution-status.d.ts.map