style(proxy_cli): additional tracing

This commit is contained in:
Krrish Dholakia 2023-10-10 18:17:57 -07:00
parent c5a039be99
commit 1df3f349fe
3 changed files with 1 additions and 0 deletions

BIN
dist/litellm-0.7.1.dev2-py3-none-any.whl vendored Normal file

Binary file not shown.

BIN
dist/litellm-0.7.1.dev2.tar.gz vendored Normal file

Binary file not shown.

View file

@ -62,6 +62,7 @@ def load_config():
# Copying the file using shutil.copy
shutil.copy(default_config_path, user_config_path)
print(f"user_config_path: {user_config_path}")
print(f"os path is file: {os.path.isfile(user_config_path)}")
# 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')}")