-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
executable file
·60 lines (53 loc) · 1.2 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[tool.poetry]
name = "llm-bot"
version = "0.1.0"
description = ""
authors = ["chega8"]
readme = "README.md"
packages = [{include = "llm_bot"}]
[tool.poetry.dependencies]
python = "^3.11"
llama-cpp-python = "^0.2.77"
langchain-community = "^0.2.4"
python-dotenv = "^1.0.1"
pydantic = "^2.7.3"
pre-commit = "^3.7.1"
python-telegram-bot = "^21.3"
pytest = "^8.2.2"
pydantic-settings = "^2.3.1"
loguru = "^0.7.2"
isort = "^5.13.2"
black = "^24.4.2"
motor = "^3.4.0"
pymongo = "^4.7.3"
pytest-asyncio = "^0.23.7"
tavily-python = "^0.3.3"
langchainhub = "^0.1.18"
langgraph = "^0.0.66"
prometheus-client = "^0.20.0"
psycopg2 = "^2.9.9"
asyncpg = "^0.29.0"
grpcio = "^1.64.1"
grpcio-tools = "^1.64.1"
langchain = "^0.2.6"
torch = "^2.4.0"
transformers = "^4.43.3"
sentencepiece = "^0.2.0"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.4"
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.poetry.extras]
pipfile_deprecated_finder = ["isort"]
[tool.black]
line-length = 88
target-version = ['py311']
skip-string-normalization = true
[tool.isort]
profile = "black"
line_length = 88
multi_line_output = 3
include_trailing_comma = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"