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

30 lines 742 B
import type { RTAExecutableId } from './rta-executable-id.js'; import type { RTAModelVersionList } from './rta-model-version-list.js'; /** * Representation of the 'RTAModelBaseData' schema. */ export type RTAModelBaseData = { /** * Name of the model */ model: string; executableId: RTAExecutableId; /** * Description of the model and its capabilities */ description: string; versions: RTAModelVersionList; /** * Display name of the model */ displayName?: string; /** * Access type of the model */ accessType?: string; /** * Provider of the model */ provider?: string; } & Record<string, any>; //# sourceMappingURL=rta-model-base-data.d.ts.map