@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 • 342 B
TypeScript
import type { AiArtifactArray } from './ai-artifact-array.js';
/**
* Representation of the 'AiArtifactList' schema.
*/
export type AiArtifactList = {
/**
* Number of the resource instances in the list
*/
count: number;
resources: AiArtifactArray;
} & Record<string, any>;
//# sourceMappingURL=ai-artifact-list.d.ts.map