UNPKG

@sap-ai-sdk/orchestration

Version:

SAP Cloud SDK for AI is the official Software Development Kit (SDK) for **SAP AI Core**, **SAP Generative AI Hub**, and **Orchestration Service**.

26 lines 766 B
import type { EmbeddingsModelParams } from './embeddings-model-params.js'; /** * Representation of the 'EmbeddingsModelDetails' schema. */ export type EmbeddingsModelDetails = { name: string; /** * Default: "latest". */ version?: string; params?: EmbeddingsModelParams; /** * Timeout for the Embeddings request in seconds. This parameter is currently ignored for Vertex AI models. * Default: 600. * Maximum: 1200. * Minimum: 1. */ timeout?: number; /** * Maximum number of retries for the Embeddings request. This parameter is currently ignored for Vertex AI models. * Default: 2. * Maximum: 5. */ max_retries?: number; }; //# sourceMappingURL=embeddings-model-details.d.ts.map