-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
42 lines (38 loc) · 949 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
[tool.poetry]
name = "multimodal-rag"
version = "0.1.0"
description = ""
authors = ["Christopher Keibel <christopher.keibel.90@gmail.com>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "<3.12,>=3.10.0"
transformers = "^4.40.1"
pydantic = "^2.7.1"
gradio = "^4.29.0"
fastapi = "^0.111.0"
accelerate = "0.30.1"
loguru = "^0.7.2"
pillow = "^10.2.0"
timm = "^1.0.8"
pymupdf = "^1.24.9"
dynaconf = "^3.2.6"
langchain-text-splitters = "^0.3.0"
lancedb = "^0.13.0"
pyarrow = "^17.0.0"
chromadb = "^0.5.5"
einops = "^0.8.0"
torch = "2.0.0"
jinja2 = "^3.1.4"
unstructured = {extras = ["all-docs"], version = "^0.15.12"}
langchain-experimental = "^0.3.0"
langchain-community = "^0.3.0"
sentence-transformers = "^3.1.1"
openai = "^1.47.0"
datasets = "^3.0.0"
rank-bm25 = "^0.2.2"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"