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

10 lines 645 B
import type { AiCoreOpenSourceChatModel, AiCoreOpenSourceEmbeddingModel, AwsBedrockChatModel, AwsBedrockEmbeddingModel, AzureOpenAiChatModel, AzureOpenAiEmbeddingModel, GcpVertexAiChatModel, PerplexityChatModel } from '@sap-ai-sdk/core'; /** * Supported chat models for orchestration. */ export type ChatModel = AzureOpenAiChatModel | GcpVertexAiChatModel | AwsBedrockChatModel | PerplexityChatModel | AiCoreOpenSourceChatModel; /** * Supported embedding models for orchestration. */ export type EmbeddingModel = AzureOpenAiEmbeddingModel | AwsBedrockEmbeddingModel | AiCoreOpenSourceEmbeddingModel; //# sourceMappingURL=model-types.d.ts.map