diff --git a/dist/litellm-0.7.1.dev1-py3-none-any.whl b/dist/litellm-0.7.1.dev1-py3-none-any.whl new file mode 100644 index 0000000000..c2ef1420c4 Binary files /dev/null and b/dist/litellm-0.7.1.dev1-py3-none-any.whl differ diff --git a/dist/litellm-0.7.1.dev1.tar.gz b/dist/litellm-0.7.1.dev1.tar.gz new file mode 100644 index 0000000000..f557ed47d5 Binary files /dev/null and b/dist/litellm-0.7.1.dev1.tar.gz differ diff --git a/litellm/proxy/proxy_cli.py b/litellm/proxy/proxy_cli.py index 7f3d056fb0..f3ce8d753b 100644 --- a/litellm/proxy/proxy_cli.py +++ b/litellm/proxy/proxy_cli.py @@ -1,5 +1,5 @@ import click -import subprocess +import subprocess, traceback import os, appdirs from dotenv import load_dotenv @@ -65,7 +65,8 @@ def load_config(): # As the .env file is typically much simpler in structure, we use load_dotenv here directly load_dotenv(dotenv_path=user_config_path) print(f"together ai api key: {os.getenv('TOGETHERAI_API_KEY')}") - except: + except Exception as e: + traceback.print_exc() pass def open_config():