@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**.
16 lines • 462 B
JavaScript
function isFoundationModel(model) {
return typeof model === 'object' && 'name' in model;
}
/**
* Get the model information from a deployment.
* @param deployment - AI core model deployment.
* @returns The model information.
* @internal
*/
export function extractModel(deployment) {
const model = deployment.details?.resources?.backendDetails?.model;
if (isFoundationModel(model)) {
return model;
}
}
//# sourceMappingURL=model.js.map