bug: creating LiteLLM
with router using from_config
doesn't work
#441
Labels
Milestone
LiteLLM
with router using from_config
doesn't work
#441
What happened?
Initializing router for
LiteLLM
using from config yields incorrect object, instead of getting initializedlitellm.Router
current implementation seems to override it completely with arbitrary object provided for therouter
key.How can we reproduce it?
Here's the code snippet:
It prints
[{'model_name': 'gpt-4o', 'litellm_params': {'model': 'azure/gpt-4o-eval-1'}}, {'model_name': 'gpt-4o', 'litellm_params': {'model': 'azure/gpt-4o-eval-2'}}]
, but I'd expect to get an initializedlitellm.Router
here instead.The text was updated successfully, but these errors were encountered: