From cf6ecc03a5743cff2e8ecfc107f07c643bf379b1 Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Wed, 6 Dec 2023 13:14:26 -0800 Subject: [PATCH] (fix) linting --- litellm/proxy/proxy_server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/proxy/proxy_server.py b/litellm/proxy/proxy_server.py index e500bcd302..f3d3c5fc07 100644 --- a/litellm/proxy/proxy_server.py +++ b/litellm/proxy/proxy_server.py @@ -1047,7 +1047,7 @@ def get_litellm_model_info(model: dict = {}): #### [BETA] - This is a beta endpoint, format might change based on user feedback https://github.com/BerriAI/litellm/issues/933. If you need a stable endpoint use /model/info @router.get("/v1/model/info", description="Provides more info about each model in /models, including config.yaml descriptions (except api key and api base)", tags=["model management"], dependencies=[Depends(user_api_key_auth)]) -async def model_info(request: Request): +async def model_info_v1(request: Request): global llm_model_list, general_settings, user_config_file_path # Load existing config with open(f"{user_config_file_path}", "r") as config_file: