@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 • 733 B
TypeScript
import type { AiExecutableId } from './ai-executable-id.js';
import type { AiModelVersionList } from './ai-model-version-list.js';
/**
* Representation of the 'AiModelBaseData' schema.
*/
export type AiModelBaseData = {
/**
* Name of the model
*/
model: string;
executableId: AiExecutableId;
/**
* Description of the model and its capabilities
*/
description: string;
versions: AiModelVersionList;
/**
* Display name of the model
*/
displayName?: string;
/**
* Access type of the model
*/
accessType?: string;
/**
* Provider of the model
*/
provider?: string;
} & Record<string, any>;
//# sourceMappingURL=ai-model-base-data.d.ts.map