@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 • 336 B
TypeScript
import type { AiModelBaseData } from './ai-model-base-data.js';
/**
* Representation of the 'AiModelList' schema.
*/
export type AiModelList = {
/**
* Number of the resource instances in the list
*/
count: number;
resources: AiModelBaseData[];
} & Record<string, any>;
//# sourceMappingURL=ai-model-list.d.ts.map