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

19 lines 451 B
import type { TrckLabelName } from './trck-label-name.js'; /** * a classifying phrase/name applied to a metric * @example { * "name": "group", * "value": "tree-82" * } */ export type TrckLabel = { name: TrckLabelName; /** * Metric Label Value * @example "sk_learn_random_forest_model" * Max Length: 256. * Min Length: 1. */ value: string; } & Record<string, any>; //# sourceMappingURL=trck-label.d.ts.map