-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
89 lines (85 loc) · 1.98 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[tool.poetry]
name = "AI-POC"
version = "0.1.0"
description = ""
authors = ["Alex Nestu"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.11,<3.13"
flask = "^3.0.3"
requests = "^2.32.3"
opencv-python = "^4.10.0.84"
tenacity = "^8.4.2"
matplotlib = "^3.9.0"
langchain = "^0.2.6"
diffusers = "^0.29.2"
transformers = "^4.42.3"
scipy = "^1.14.0"
ftfy = "^6.2.0"
mypy = "^1.10.1"
ruff = "^0.5.0"
black = "^24.4.2"
ipykernel = "^6.29.5"
# ImportError: libcudnn.so.9: cannot open shared object file: No such file or directory
torch = "2.0.0"
jupyter = "^1.0.0"
fastapi = "^0.111.0"
accelerate = "^0.32.1"
openai = "^1.35.10"
chromadb = "^0.5.3"
tiktoken = "^0.7.0"
langchain-community = "^0.2.6"
unstructured = "^0.14.9"
#unstructured = { version = "*", extras = ["pdf"] }
huggingface-hub = "^0.23.4"
layoutparser = "^0.3.4"
pillow-heif = "^0.17.0"
unstructured-inference = "^0.7.36"
unstructured-pytesseract = "^0.3.12"
pytesseract = "^0.3.10"
sentence-transformers = "^3.0.1"
pypdf = "^4.2.0"
yt-dlp = "^2024.7.2"
pydub = "^0.25.1"
librosa = "^0.10.2.post1"
faster-whisper = "^1.0.3"
spacy = "^3.7.5"
faker = "^26.0.0"
langchain-huggingface = "^0.0.3"
langchain-openai = "^0.1.14"
lark = "^1.1.9"
optimum = "^1.21.2"
openvino = "^2024.2.0"
nncf = "^2.11.0"
optimum-openvino = "^0.0.2"
onnx = "^1.16.1"
datasets = "^2.20.0"
g4f = "^0.3.2.1"
curl-cffi = "^0.7.0"
streamlit = "^1.36.0"
langsmith = "^0.1.84"
langchainhub = "^0.1.20"
pandas = "^2.2.2"
duckduckgo-search = "^6.1.10"
panel = "^1.4.4"
docarray = "^0.40.0"
watchfiles = "^0.22.0"
hvplot = "^0.10.0"
jupyter-bokeh = "^4.0.5"
ipynbname = "^2024.1.0.0"
serpapi = "^0.1.5"
google-search-results = "^2.4.2"
cohere = "^5.5.8"
langchain-cohere = "^0.1.9"
ctransformers = "^0.2.27"
numexpr = "^2.10.1"
langgraph = "^0.1.9"
langchain-ollama = "^0.1.1"
anthropic = "^0.34.2"
flask-socketio = "^5.4.1"
babyagi = "^0.0.7"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"