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

12 lines 340 B
import type { AiExecutable } from './ai-executable.js'; /** * Representation of the 'AiExecutableList' schema. */ export type AiExecutableList = { /** * Number of the resource instances in the list */ count: number; resources: AiExecutable[]; } & Record<string, any>; //# sourceMappingURL=ai-executable-list.d.ts.map