mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-09-22 08:12:00 +02: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',
|
||||
'anthropic',
|
||||
'openai',
|
||||
'azureopenai',
|
||||
'openrouter',
|
||||
'xai',
|
||||
'deepseek',
|
||||
'ollama',
|
||||
'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> = {
|
||||
// google: (item) => ({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue