UNPKG

@sap-ai-sdk/foundation-models

Version:

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

13 lines 749 B
/** * The details of a a vectorization source, used by Azure OpenAI On Your Data when applying vector search, that is based * on an internal embeddings model deployment name in the same Azure OpenAI resource. */ export type AzureOpenAiOnYourDataDeploymentNameVectorizationSource = { type: string; } & { /** * Specifies the name of the model deployment to use for vectorization. This model deployment must be in the same Azure OpenAI resource, but On Your Data will use this model deployment via an internal call rather than a public one, which enables vector search even in private networks. */ deployment_name: string; } & Record<string, any>; //# sourceMappingURL=on-your-data-deployment-name-vectorization-source.d.ts.map