From ee97f7327ec137d1a9357957f4264208ddc5aed0 Mon Sep 17 00:00:00 2001 From: yassin Date: Mon, 21 Sep 2026 19:45:15 +0000 Subject: [PATCH] fix(edenai): register the chat config class directly in the provider table Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> --- litellm/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/utils.py b/litellm/utils.py index 609f8012d04..ab391868584 100644 --- a/litellm/utils.py +++ b/litellm/utils.py @@ -8319,7 +8319,7 @@ class ProviderConfigManager: lambda: litellm.VercelAIGatewayConfig(), False, ), - LlmProviders.EDENAI: (lambda: litellm.EdenAIChatConfig(), False), + LlmProviders.EDENAI: (litellm.EdenAIChatConfig, False), LlmProviders.COMETAPI: (lambda: litellm.CometAPIConfig(), False), LlmProviders.DATAROBOT: (lambda: litellm.DataRobotConfig(), False), LlmProviders.GEMINI: (lambda: litellm.GoogleAIStudioGeminiConfig(), False),