🤖 fix: Azure Agents after Upstream Breaking Change (#5571)

* 🤖 fix: Azure Agents after Upstream Breaking Change

* chore: bump @langchain/core & @librechat/agents

* fix: correct formatting in assistant actions update logic and use correctly filtered actions variable

* fix: linting errors
This commit is contained in:
Danny Avila 2025-01-31 09:50:49 -05:00 committed by GitHub
parent e1a6268904
commit 6920e23fb2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 48 additions and 471 deletions

View file

@ -1,6 +1,6 @@
{
"name": "librechat-data-provider",
"version": "0.7.696",
"version": "0.7.697",
"description": "data services for librechat apps",
"main": "dist/index.js",
"module": "dist/index.es.js",

View file

@ -1235,6 +1235,6 @@ export enum SystemCategories {
export const providerEndpointMap = {
[EModelEndpoint.openAI]: EModelEndpoint.openAI,
[EModelEndpoint.bedrock]: EModelEndpoint.bedrock,
[EModelEndpoint.azureOpenAI]: EModelEndpoint.openAI,
[EModelEndpoint.anthropic]: EModelEndpoint.anthropic,
[EModelEndpoint.azureOpenAI]: EModelEndpoint.azureOpenAI,
};