-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 861 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (34 loc) · 861 Bytes
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
[tool.poetry]
name = "ai-tools"
version = "0.1.0"
description = ""
authors = ["ryan <exogenesis@protonmail.com>"]
readme = "README.md"
packages = [ {include = "*", from="src"} ]
[tool.poetry.dependencies]
python = ">=3.11,<=3.13.2"
ollama = "^0.2.1"
tqdm = "^4.66.4"
chromadb = "^0.5.3"
typer = "^0.12.3"
langchain-community = "^0.2.6"
langchain-text-splitters = "^0.2.2"
toml = "^0.10.2"
unstructured = {extras = ["docx", "md", "pptx"], version = "^0.14.9"}
matplotlib = "^3.9.0"
scikit-learn = "^1.5.0"
umap-learn = "^0.5.6"
pyqt6 = "^6.7.0"
bokeh = "^3.4.2"
psutil = "^6.0.0"
langchain-core = "^0.2.18"
[tool.poetry.group.dev.dependencies]
ipython = "^8.26.0"
jupyter = "^1.0.0"
basedpyright = "^1.13.1"
ptpython = "^3.0.27"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
ai-tools = "main:app"