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

12 lines 483 B
import type { AiId } from './ai-id.js'; import type { AiArtifactCreationResponseMessage } from './ai-artifact-creation-response-message.js'; import type { AiArtifactUrl } from './ai-artifact-url.js'; /** * Representation of the 'AiArtifactCreationResponse' schema. */ export type AiArtifactCreationResponse = { id: AiId; message: AiArtifactCreationResponseMessage; url: AiArtifactUrl; } & Record<string, any>; //# sourceMappingURL=ai-artifact-creation-response.d.ts.map