@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**.
15 lines • 376 B
TypeScript
import type { AiBackendDetails } from './ai-backend-details.js';
/**
* Resources details of a deployment
* @example {
* "backendDetails": {
* "predictor": {
* "resourcePlan": "starter"
* }
* }
* }
*/
export type AiResourcesDetails = {
backendDetails?: AiBackendDetails;
} & Record<string, any>;
//# sourceMappingURL=ai-resources-details.d.ts.map