-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (37 loc) · 943 Bytes
/
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
[tool.poetry]
name = "mafia_qa"
version = "0.1.0"
description = ""
authors = ["Olga Lipina <[email protected]>"]
readme = "README.md"
packages = [{include = "mafia_qa"}]
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
fastapi = "^0.109.2"
uvicorn = "^0.27.1"
python-multipart = "^0.0.9"
[tool.poetry.group.call_qa]
optional = true
[tool.poetry.group.call_qa.dependencies]
weaviate-client = "^4.4.4"
chromadb = "^0.4.22"
docx2txt = "^0.8"
sentence-transformers = "^2.3.1"
faiss-cpu = "^1.7.4"
langchain = "^0.1.7"
langchain-community = "^0.0.20"
tiktoken = "^0.6.0"
langchain-openai = "^0.0.6"
langchainhub = "^0.1.14"
python-docx = "^1.1.0"
[tool.poetry.group.model]
optional = true
[tool.poetry.group.model.dependencies]
transformers = "^4.37.2"
torch = "^2.2.0"
accelerate = "^0.27.2"
[tool.poetry.group.dev.dependencies]
jupyterlab = "^4.1.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"