Custom Azure Endpoints not working anymore after LibreChat update #9123
Replies: 10 comments 2 replies
This comment was marked as spam.
This comment was marked as spam.
-
Yes please! How can I get my custom endpoints with Azure Open AI models back to work? |
Beta Was this translation helpful? Give feedback.
This comment was marked as spam.
This comment was marked as spam.
-
The model names and api versions in the backend (Azure AI Foundry) haven't changed at all. If I roll back to Version v0.7.8 of LibreChat, the custom endpoints work like a charm. But in v0.8.0-rc2 of LibreChat I get the 404 not found error. I can't find any solution for my problem in the ProblemMap. |
Beta Was this translation helpful? Give feedback.
This comment was marked as spam.
This comment was marked as spam.
-
It is recommended to use Azure Endpoint configuration and not custom endpoints for Azure. On v0.7.8 it was never intended for azure to work via custom endpoints and there could be more than one reason why it's not working now. |
Beta Was this translation helpful? Give feedback.
-
I encountered the same problem after upgrading from v0.7.8 to v0.8.0-rc2. After analysing the issue, I found that Background: I use Azure API Management to centralize all requests to Azure AI Foundry and therefore using Custom Endpoint is a must. Here is my config (setting version: 1.2.8
endpoints:
custom:
- name: 'APIM'
apiKey: '${AZURE_OPENAI_API_KEY}'
baseURL: 'https://***.azure-api.net/openai***/deployments/gpt-5/chat/completions?api-version=2025-01-01-preview'
directEndpoint: true
models:
default: [ "gpt-5" ]
fetch: false
modelDisplayLabel: 'APIM' Here is the actual URL that is being sent from LibreChat This of course leading to the |
Beta Was this translation helpful? Give feedback.
-
Having issue with directEndpoint: true as well Here's my custom endpoint which I try to set up for Anthropic models in Bedrock via corporate proxy: name: "AWS Bedrock Models'
iconURL: "anthropic"
apiKey: "${AI_BEDROCK_GATEWAY_KEY}"
baseURL: 'https://bedrock-gateway-beta.apps.ai-dev.abc.cloud/invoke'
models:
default:
"us-anthropic.claude-3-7-sonnet-20250219-v1:0"
"us-anthropic.claude-3-5-sonnet-20241822-v2:0"
fetch: false
titleConvo: true
titleModel: 'title-endpoint'
directEndpoint: true
addParams:
# safe_prompt: true
max_tokens: 2048
anthropic_version: "bedrock-2023-05-31"
model_id: "us.anthropic.claude-3-7-sonnet-20250219-v1:0"
dropParams:
- "model"
- "stream"
headers:
X-AI-USAGE-TRACKING-USER: "email={{LIBRECHAT_USER_EMAIL}}"
Authorization: "Bearer ${AI_BEDROCK_GATEWAY_KEY}" With this configutation, I see the following url in request: Actually I'm trying to simulate this request in custom endpoint: headers = {"Content-Type": "application/json", "Authorization": "Bearer someApiKey"}
url = "https://bedrock-gateway-beta.apps.ai-dev.abc.cloud/invoke"
"messages": [{"role": "user", "content": "Hello, world"}l,
"max_tokens": 1024,
"anthropic_version": "bedrock-2023-05-31"
"model_id": "us-anthropic.claude-3-7-sonnet-20258219-v1:0" Unfortunately, I can not use pre configured provider as described here: Working with librechat:0.7.9 image |
Beta Was this translation helpful? Give feedback.
-
I noticed from a few configurations being shared here and on discord, that |
Beta Was this translation helpful? Give feedback.
-
FYI the |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
What happened?
Hi, I have some custom endpoints with Azure Open AI models configured. I use custom endpoints for these models so I can change the icon to a custom one. However, I updated LibreChat from v0.7.8 to v0.8.0-rc2 and after the update the endpoints are not working anymore. I get the following error message, when I start to chat with the model/endpoint:
The configuration has worked fine before the update. Here is the Part of my config:
Version Information
librechat latest 7c1b4cab81ab 39 minutes ago 1.17GB
ghcr.io/danny-avila/librechat-rag-api-dev-lite latest 2f812738600a 16 hours ago 1.67GB
ghcr.io/danny-avila/librechat-rag-api-dev-lite e7da8e6aca0f 3 months ago 1.31GB
Steps to Reproduce
What browsers are you seeing the problem on?
Firefox, Chrome, Safari, Microsoft Edge, Mobile (iOS), Mobile (Android)
Relevant log output
Screenshots
No response
Code of Conduct
Beta Was this translation helpful? Give feedback.
All reactions