Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

⬆️ 🛠️(deps) #102

Merged
merged 11 commits into from
Sep 23, 2023
2 changes: 1 addition & 1 deletion myllm/default_settings.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ llm_model = "gpt-3.5-turbo"
# LLM Provider
# Refer to https://github.com/xtekky/gpt4free
# for the list of supported provider
llm_provider = "g4f.Provider.DeepAi"
llm_provider = "g4f.Provider.ChatgptAi"

# help message listing the commands
# available
Expand Down
10 changes: 6 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,15 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry.dependencies]
python = "^3.10"
dynaconf = "^3.1.12"
dynaconf = "3.1.12"
loguru = ">=0.6.0"
httpx = ">=0.24.1"
js2py = "^0.74"
g4f = ">=0.0.2.6,<0.0.4.0"
langchain = "^0.0.296"
g4f = "0.0.3.0"
langchain = "0.0.296"
nest_asyncio = "*"

curl-cffi ="0.5.7"
PyExecJS2="1.6.1"

[tool.poetry.group.dev.dependencies]
python-semantic-release = "^8.0.7"
Expand All @@ -44,6 +45,7 @@ select = [
"E", # pycodestyle
"F", # pyflakes
"I", # isort
"W"
]
exclude = [
".github/*",
Expand Down