From c1d5e275bc14f32165cce167f09be3464de9bd91 Mon Sep 17 00:00:00 2001 From: Cole McIntosh Date: Mon, 21 Jul 2025 14:51:49 -0600 Subject: [PATCH] feat: register Hyperbolic provider in ProviderConfigManager - Added support for Hyperbolic provider in the ProviderConfigManager. - Integrated HyperbolicChatConfig to handle configurations for the new provider. --- litellm/utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/litellm/utils.py b/litellm/utils.py index fbfe71cf96c..bceee7b6814 100644 --- a/litellm/utils.py +++ b/litellm/utils.py @@ -6882,6 +6882,8 @@ class ProviderConfigManager: return litellm.OpenAIGPTConfig() elif litellm.LlmProviders.NSCALE == provider: return litellm.NscaleConfig() + elif litellm.LlmProviders.HYPERBOLIC == provider: + return litellm.HyperbolicChatConfig() return None @staticmethod