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
48 lines (45 loc) · 1.06 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (45 loc) · 1.06 KB
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
[project]
name = "hands-on-llms"
version = "0.1.0"
description = "A hands on guide to working with LLMs"
authors = [
{ name = "Ryan Daniels"},
{ name = "Fin Griffin"},
]
license = { text = "GPL-3.0-or-later" }
readme = "README.md"
requires-python = ">=3.11,<4.0"
dependencies = [
"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",
"ipykernel>=6.30.1",
"langgraph>=1.1.3",
"langchain>=1.2.13",
"autogen-agentchat>=0.7.5",
]
[dependency-groups]
dev = [
"mkdocs>=1.6.1,<2.0.0",
"mkdocs-jupyter>=0.25.1",
"mkdocs-material>=9.5.44,<10.0.0",
"mkdocstrings>=0.27.0,<0.28.0",
]
[tool.setuptools]
packages = []
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"