Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bug: creating LiteLLM with router using from_config doesn't work #441

Closed
micpst opened this issue Mar 24, 2025 · 0 comments · Fixed by #454
Closed

bug: creating LiteLLM with router using from_config doesn't work #441

micpst opened this issue Mar 24, 2025 · 0 comments · Fixed by #454
Assignees
Labels
bug Something isn't working good first issue Good for newcomers
Milestone

Comments

@micpst
Copy link
Collaborator

micpst commented Mar 24, 2025

What happened?

Initializing router for LiteLLM using from config yields incorrect object, instead of getting initialized litellm.Router current implementation seems to override it completely with arbitrary object provided for the router key.

How can we reproduce it?

Here's the code snippet:

from ragbits.core.llms.base import LLM

llm = LLM.subclass_from_config(
    ObjectContructionConfig(
        type="ragbits.core.llms.litellm:LiteLLM",
        config={
            "model_name": "gpt-4-turbo",
            "router": [
                {
                    "model_name": "gpt-4o",
                    "litellm_params": {
                        "model": "azure/gpt-4o-eval-1",
                },
                {
                    "model_name": "gpt-4o",
                    "litellm_params": {
                        "model": "azure/gpt-4o-eval-2",
                    },
                },
           ],
        },
    )
)
print(llm.router)

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 initialized litellm.Router here instead.

@micpst micpst added the bug Something isn't working label Mar 24, 2025
@micpst micpst self-assigned this Mar 24, 2025
@micpst micpst added this to ragbits Mar 24, 2025
@micpst micpst moved this to Backlog in ragbits Mar 24, 2025
@micpst micpst added the good first issue Good for newcomers label Mar 24, 2025
@micpst micpst moved this from Backlog to Ready in ragbits Mar 24, 2025
@micpst micpst removed their assignment Mar 24, 2025
@kzamlynska kzamlynska self-assigned this Mar 25, 2025
@kzamlynska kzamlynska moved this from Ready to In Progress in ragbits Mar 25, 2025
@mhordynski mhordynski added this to the Ragbits 1.0.0 milestone Mar 25, 2025
@kzamlynska kzamlynska moved this from In Progress to In review in ragbits Mar 25, 2025
@github-project-automation github-project-automation bot moved this from In review to Done in ragbits Mar 26, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working good first issue Good for newcomers
Projects
Status: Done
Development

Successfully merging a pull request may close this issue.

3 participants