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

25 lines 1.04 kB
import type { AiConfigurationName } from './ai-configuration-name.js'; import type { AiExecutableId } from './ai-executable-id.js'; import type { AiScenarioId } from './ai-scenario-id.js'; import type { AiParameterArgumentBindingList } from './ai-parameter-argument-binding-list.js'; import type { AiArtifactArgumentBindingList } from './ai-artifact-argument-binding-list.js'; import type { AiConfigurationId } from './ai-configuration-id.js'; import type { AiScenario } from './ai-scenario.js'; /** * Representation of the 'AiConfiguration' schema. */ export type AiConfiguration = { name: AiConfigurationName; executableId: AiExecutableId; scenarioId: AiScenarioId; parameterBindings?: AiParameterArgumentBindingList; inputArtifactBindings?: AiArtifactArgumentBindingList; id: AiConfigurationId; /** * Timestamp of resource creation * Format: "date-time". */ createdAt: string; scenario?: AiScenario | any | null; } & Record<string, any>; //# sourceMappingURL=ai-configuration.d.ts.map