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
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

View file

@ -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"
]