From 4e3040b3577affc74cbe577abfab806a57890481 Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Tue, 5 Dec 2023 13:23:35 -0800 Subject: [PATCH] (chore) linting fix --- litellm/proxy/queue/celery_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/proxy/queue/celery_app.py b/litellm/proxy/queue/celery_app.py index 47c9c868ff..b9006f13ec 100644 --- a/litellm/proxy/queue/celery_app.py +++ b/litellm/proxy/queue/celery_app.py @@ -45,7 +45,7 @@ celery_app.conf.update( @celery_app.task(name='process_job', max_retries=3) def process_job(*args, **kwargs): try: - llm_router: litellm.Router = litellm.Router(model_list=kwargs.pop("llm_model_list")) + llm_router: litellm.Router = litellm.Router(model_list=kwargs.pop("llm_model_list")) # type: ignore response = llm_router.completion(*args, **kwargs) # type: ignore if isinstance(response, litellm.ModelResponse): response = response.model_dump_json()