forked from acceleratescience/hands-on-llms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 844 Bytes
/
pyproject.toml
File metadata and controls
36 lines (33 loc) · 844 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
[tool.poetry]
name = "hands-on-llms"
version = "0.1.0"
description = "A hands on guide to working with LLMs"
authors = ["Ryan Daniels <31715811+rkdan@users.noreply.github.com>"]
license = "GPL-3.0-or-later"
readme = "README.md"
packages = [{include = "hands_on_llms"}]
[tool.poetry.dependencies]
python = "^3.11"
llama-index = "^0.11.23"
openai = "^1.54.4"
python-dotenv = "^1.0.1"
rich = "^13.9.4"
pydantic = "^2.9.2"
chromadb = "^0.5.18"
streamlit = "^1.40.1"
transformers = "^4.46.2"
matplotlib = "^3.9.2"
seaborn = "^0.13.2"
scikit-learn = "^1.5.2"
pysyllables = "^1.0.3"
Jinja2 = "^3.1.4"
tqdm = "^4.67.0"
numpy = "^2.1.3"
PyMuPDF = "^1.24.13"
[tool.poetry.group.dev.dependencies]
mkdocs = "^1.6.1"
mkdocs-material = "^9.5.44"
mkdocstrings = "^0.27.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"