@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 • 839 B
TypeScript
import type { AzureOpenAiAzureSearchChatExtensionConfiguration } from './azure-search-chat-extension-configuration.js';
import type { AzureOpenAiAzureCosmosDBChatExtensionConfiguration } from './azure-cosmos-db-chat-extension-configuration.js';
/**
* A representation of configuration data for a single Azure OpenAI chat extension. This will be used by a chat
* completions request that should use Azure OpenAI chat extensions to augment the response behavior.
* The use of this configuration is compatible only with Azure OpenAI.
*/
export type AzureOpenAiAzureChatExtensionConfiguration = ({
type: 'azure_search';
} & AzureOpenAiAzureSearchChatExtensionConfiguration) | ({
type: 'azure_cosmos_db';
} & AzureOpenAiAzureCosmosDBChatExtensionConfiguration);
//# sourceMappingURL=azure-chat-extension-configuration.d.ts.map