feat: register Hyperbolic provider in ProviderConfigManager

- Added support for Hyperbolic provider in the ProviderConfigManager.
- Integrated HyperbolicChatConfig to handle configurations for the new provider.
This commit is contained in:
Cole McIntosh 2025-07-21 14:51:49 -06:00
parent 6059b5c1f6
commit c1d5e275bc

View file

@ -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