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

42 lines 1.33 kB
import type { AiLabelList } from './ai-label-list.js'; import type { AiExecutableId } from './ai-executable-id.js'; import type { AiScenarioId } from './ai-scenario-id.js'; import type { AiVersionId } from './ai-version-id.js'; import type { AiExecutableParameterList } from './ai-executable-parameter-list.js'; import type { AiExecutableArtifactList } from './ai-executable-artifact-list.js'; /** * An ML executable consists of a set of ML tasks, flows between tasks, dependencies between tasks, models (or model versions?). * */ export type AiExecutable = { labels?: AiLabelList; /** * Name of the executable */ name: string; /** * Description of the executable */ description?: string; id: AiExecutableId; scenarioId?: AiScenarioId; versionId: AiVersionId; parameters?: AiExecutableParameterList; inputArtifacts?: AiExecutableArtifactList; outputArtifacts?: AiExecutableArtifactList; /** * Whether this executable is deployable */ deployable: boolean; /** * Timestamp of resource creation * Format: "date-time". */ createdAt: string; /** * Timestamp of latest resource modification * Format: "date-time". */ modifiedAt: string; } & Record<string, any>; //# sourceMappingURL=ai-executable.d.ts.map