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

16 lines 724 B
import type { AiId } from './ai-id.js'; import type { AiDeploymentCreationResponseMessage } from './ai-deployment-creation-response-message.js'; import type { AiDeploymentUrl } from './ai-deployment-url.js'; import type { AiExecutionStatus } from './ai-execution-status.js'; import type { AiDeploymentTimeToLive } from './ai-deployment-time-to-live.js'; /** * Representation of the 'AiDeploymentCreationResponse' schema. */ export type AiDeploymentCreationResponse = { id: AiId; message: AiDeploymentCreationResponseMessage; deploymentUrl?: AiDeploymentUrl; status?: AiExecutionStatus; ttl?: AiDeploymentTimeToLive; } & Record<string, any>; //# sourceMappingURL=ai-deployment-creation-response.d.ts.map