From a6f35c8d7aeadc9e10d73cf2a97c66030a8f4de8 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Tue, 10 Oct 2023 18:07:57 -0700 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.7.0=20=E2=86=92=200.7.1.dev?= =?UTF-8?q?1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- litellm/proxy/proxy_cli.py | 19 ++++++++++--------- pyproject.toml | 4 ++-- 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/litellm/proxy/proxy_cli.py b/litellm/proxy/proxy_cli.py index e591601d3..7f3d056fb 100644 --- a/litellm/proxy/proxy_cli.py +++ b/litellm/proxy/proxy_cli.py @@ -7,14 +7,14 @@ load_dotenv() from importlib import resources import shutil, random list_of_messages = [ - "The thing I wish you improved is:", - "A feature I really want is:", - "The worst thing about this product is:", - "This product would be better if:", - "I don't like how this works:", - "It would help me if you could add:", - "This feature doesn't meet my needs because:", - "I get frustrated when the product:", + "The thing I wish you improved is...:", + "A feature I really want is...:", + "The worst thing about this product is...:", + "This product would be better if...:", + "I don't like how this works...:", + "It would help me if you could add...:", + "This feature doesn't meet my needs because...:", + "I get frustrated when the product...:", ] def generate_feedback_box(): @@ -61,9 +61,10 @@ 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}") # 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: pass diff --git a/pyproject.toml b/pyproject.toml index 70b9129c3..ca119c46c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "litellm" -version = "0.7.0" +version = "0.7.1.dev1" description = "Library to easily interface with LLM API providers" authors = ["BerriAI"] license = "MIT License" @@ -26,7 +26,7 @@ requires = ["poetry-core"] build-backend = "poetry.core.masonry.api" [tool.commitizen] -version = "0.7.0" +version = "0.7.1.dev1" version_files = [ "pyproject.toml:^version" ]