diff --git a/dist/litellm-0.7.1.dev3-py3-none-any.whl b/dist/litellm-0.7.1.dev3-py3-none-any.whl new file mode 100644 index 0000000000..221a0bf8b8 Binary files /dev/null and b/dist/litellm-0.7.1.dev3-py3-none-any.whl differ diff --git a/dist/litellm-0.7.1.dev3.tar.gz b/dist/litellm-0.7.1.dev3.tar.gz new file mode 100644 index 0000000000..6959f6219c Binary files /dev/null and b/dist/litellm-0.7.1.dev3.tar.gz differ diff --git a/litellm/.env.template b/litellm/.env.template index 8873aa2895..93495decbb 100644 --- a/litellm/.env.template +++ b/litellm/.env.template @@ -1,7 +1,7 @@ ### KEYS ### # HUGGINGFACE_API_KEY="" # Uncomment to save your Hugging Face API key # OPENAI_API_KEY="" # Uncomment to save your OpenAI API Key -# TOGETHER_API_KEY="" # Uncomment to save your TogetherAI API key +# TOGETHERAI_API_KEY="" # Uncomment to save your TogetherAI API key # NLP_CLOUD_API_KEY="" # Uncomment to save your NLP Cloud API key # ANTHROPIC_API_KEY="" # Uncomment to save your Anthropic API key diff --git a/litellm/__pycache__/__init__.cpython-311.pyc b/litellm/__pycache__/__init__.cpython-311.pyc index bad759bf73..5cd5ea38b0 100644 Binary files a/litellm/__pycache__/__init__.cpython-311.pyc and b/litellm/__pycache__/__init__.cpython-311.pyc differ diff --git a/litellm/proxy/proxy_cli.py b/litellm/proxy/proxy_cli.py index baff2d1286..a0a0209eee 100644 --- a/litellm/proxy/proxy_cli.py +++ b/litellm/proxy/proxy_cli.py @@ -61,11 +61,8 @@ def load_config(): os.makedirs(config_dir, exist_ok=True) # 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')}") except Exception as e: traceback.print_exc() pass