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

10 lines 430 B
import type { AiId } from './ai-id.js'; import type { AiExecutionModificationResponseMessage } from './ai-execution-modification-response-message.js'; /** * Representation of the 'AiExecutionModificationResponse' schema. */ export type AiExecutionModificationResponse = { id: AiId; message: AiExecutionModificationResponseMessage; } & Record<string, any>; //# sourceMappingURL=ai-execution-modification-response.d.ts.map