bump: version 0.7.0 → 0.7.1.dev1

This commit is contained in:
Krrish Dholakia 2023-10-10 18:07:57 -07:00
parent 5a72688648
commit a6f35c8d7a
2 changed files with 12 additions and 11 deletions

View file

@ -7,14 +7,14 @@ load_dotenv()
from importlib import resources from importlib import resources
import shutil, random import shutil, random
list_of_messages = [ list_of_messages = [
"The thing I wish you improved is:", "The thing I wish you improved is...:",
"A feature I really want is:", "A feature I really want is...:",
"The worst thing about this product is:", "The worst thing about this product is...:",
"This product would be better if:", "This product would be better if...:",
"I don't like how this works:", "I don't like how this works...:",
"It would help me if you could add:", "It would help me if you could add...:",
"This feature doesn't meet my needs because:", "This feature doesn't meet my needs because...:",
"I get frustrated when the product:", "I get frustrated when the product...:",
] ]
def generate_feedback_box(): def generate_feedback_box():
@ -61,9 +61,10 @@ def load_config():
os.makedirs(config_dir, exist_ok=True) os.makedirs(config_dir, exist_ok=True)
# Copying the file using shutil.copy # Copying the file using shutil.copy
shutil.copy(default_config_path, user_config_path) 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 # As the .env file is typically much simpler in structure, we use load_dotenv here directly
load_dotenv(dotenv_path=user_config_path) load_dotenv(dotenv_path=user_config_path)
print(f"together ai api key: {os.getenv('TOGETHERAI_API_KEY')}")
except: except:
pass pass

View file

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "litellm" name = "litellm"
version = "0.7.0" version = "0.7.1.dev1"
description = "Library to easily interface with LLM API providers" description = "Library to easily interface with LLM API providers"
authors = ["BerriAI"] authors = ["BerriAI"]
license = "MIT License" license = "MIT License"
@ -26,7 +26,7 @@ requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api" build-backend = "poetry.core.masonry.api"
[tool.commitizen] [tool.commitizen]
version = "0.7.0" version = "0.7.1.dev1"
version_files = [ version_files = [
"pyproject.toml:^version" "pyproject.toml:^version"
] ]