-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (41 loc) · 955 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
[project]
name = "smol-blueprint"
version = "0.1.0"
description = "A blueprint for AI development, focusing on applied examples of RAG, information extraction, and more in the age of LLMs and agents."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"bs4>=0.0.2",
"datasets>=3.2.0",
"gradio>=5.12.0",
"gradio-client>=1.5.4",
"huggingface-hub[cli]>=0.27.1",
"iprogress>=0.4",
"ipykernel>=6.29.5",
"ipywidgets>=8.1.5",
"jupyter>=1.1.1",
"markdown>=3.7",
"torch>=2.5.1",
"transformers>=4.48.0",
]
[dependency-groups]
scraping = [
"scrapegraphai>=1.36.0",
]
rag = [
"accelerate>=1.2.1",
"duckdb>=1.1.3",
"gguf>=0.14.0",
"llama-cpp-python>=0.3.6",
"model2vec>=0.3.5",
"sentence-transformers>=3.3.1",
"torch>=2.5.1",
"vicinity[hnsw]>=0.4.0",
]
information-extraction = [
"instructor>=1.7.2",
"outlines>=0.1.12",
]
agents = [
"smolagents>=1.2.2",
]