-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
47 lines (44 loc) · 1.04 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
[tool.poetry]
name = "RAG-for-production"
version = "0.1.0"
description = ""
authors = ["Annthomy Gilles <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.11,<3.12"
pre-commit = "^3.6.0"
pandas = "^2.1.4"
pyarrow = "^14.0.2"
beautifulsoup4 = "^4.12.2"
ruff = "^0.1.9"
tqdm = "^4.66.1"
langchain = "0.1.1"
python-dotenv = "^1.0.0"
pgvector = "^0.2.4"
psycopg = { extras = ["binary"], version = "^3.1.16" }
openai = "^1.6.1"
tiktoken = "^0.5.2"
pillow = "^10.2.0"
loguru = "^0.7.2"
chromadb = "^0.4.22"
arxiv = "^2.1.0"
pypdf = "^3.17.4"
ratelimit = "^2.2.1"
types-requests = "^2.31.0.20240106"
mypy = "^1.8.0"
requests = "^2.31.0"
sentence-transformers = "^2.2.2"
pyyaml = "^6.0.1"
types-pyyaml = "^6.0.12.12"
torch = "^2.1.2"
torchvision = "^0.16.2"
torchaudio = "^2.1.2"
ray = "^2.9.0"
umap-learn = "^0.5.5"
matplotlib = "^3.8.2"
unstructured = {extras = ["all-docs"], version = "^0.12.0"}
rich = "^13.7.0"
trulens-eval = "^0.20.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"