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

10 lines 294 B
import type { AiLabelKey } from './ai-label-key.js'; import type { AiLabelValue } from './ai-label-value.js'; /** * Representation of the 'AiLabel' schema. */ export type AiLabel = { key: AiLabelKey; value: AiLabelValue; } & Record<string, any>; //# sourceMappingURL=ai-label.d.ts.map