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

23 lines 616 B
import type { AiDeployment } from '../client/AI_CORE_API/index.js'; /** * A foundation model is identified by its name and optionally a version. * @internal */ export interface FoundationModel { /** * The name of the model. */ name: string; /** * The version of the model. */ version?: string; } /** * Get the model information from a deployment. * @param deployment - AI core model deployment. * @returns The model information. * @internal */ export declare function extractModel(deployment: AiDeployment): FoundationModel | undefined; //# sourceMappingURL=model.d.ts.map