From a56d4a1e835367c9aa5a2846c64b15dcd8a59c0f Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Thu, 30 Nov 2023 08:52:05 -0800 Subject: [PATCH] (fix) proxy: print cwd() --- 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 fa9de54d1..67a60194a 100644 --- a/litellm/proxy/proxy_server.py +++ b/litellm/proxy/proxy_server.py @@ -335,7 +335,7 @@ def load_router_config(router: Optional[litellm.Router], config_file_path: str): with open(config_file_path, 'r') as file: config = yaml.safe_load(file) else: - raise Exception(f"Path to config does not exist, 'os.path.exists({config_file_path})' returned False") + raise Exception(f"Path to config does not exist, Current working directory: {os.getcwd()}, 'os.path.exists({config_file_path})' returned False") except Exception as e: raise Exception(f"Exception while reading Config: {e}")