mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 08:50:15 +01:00
🔄 fix: Add Azure to Recognized and Content array providers for MCP Tool Calls (#9092)
This commit is contained in:
parent
cc0cf359a2
commit
cebf140bce
1 changed files with 2 additions and 1 deletions
|
|
@ -3,13 +3,14 @@ const RECOGNIZED_PROVIDERS = new Set([
|
||||||
'google',
|
'google',
|
||||||
'anthropic',
|
'anthropic',
|
||||||
'openai',
|
'openai',
|
||||||
|
'azureopenai',
|
||||||
'openrouter',
|
'openrouter',
|
||||||
'xai',
|
'xai',
|
||||||
'deepseek',
|
'deepseek',
|
||||||
'ollama',
|
'ollama',
|
||||||
'bedrock',
|
'bedrock',
|
||||||
]);
|
]);
|
||||||
const CONTENT_ARRAY_PROVIDERS = new Set(['google', 'anthropic', 'openai']);
|
const CONTENT_ARRAY_PROVIDERS = new Set(['google', 'anthropic', 'azureopenai', 'openai']);
|
||||||
|
|
||||||
const imageFormatters: Record<string, undefined | t.ImageFormatter> = {
|
const imageFormatters: Record<string, undefined | t.ImageFormatter> = {
|
||||||
// google: (item) => ({
|
// google: (item) => ({
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue