-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (40 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
41 lines (40 loc) · 1.02 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
[project]
name = "building-rag-app-workshop"
version = "1.0.0"
description = "Building Reliable RAG Applications: From PoC to Production - O'Reilly Training Course"
readme = "README.md"
requires-python = ">=3.11,<3.12"
dependencies = [
"wikipedia==1.4.0",
"mwparserfromhell==0.7.2",
"beautifulsoup4==4.13.4",
"openai==1.97.0",
"tqdm==4.67.1",
"python-dotenv==1.1.1",
"ipykernel==6.29.5",
"nest-asyncio==1.6.0",
"ipywidgets==8.1.7",
"spacy==3.8.7",
"qdrant-client==1.15.0",
"matplotlib==3.10.3",
"plotly==6.2.0",
"pandas==2.3.1",
"scikit-learn==1.7.1",
"FlagEmbedding==1.3.5",
"cohere==5.16.1",
"numpy>=1.24,<2.2",
"ragas==0.3.0",
"datasets==4.0.0",
"Pillow==11.3.0",
"fastembed==0.7.1",
"ranx==0.3.20",
# Pinned for compatibility with umap-learn
"numba>=0.58.0",
"llvmlite>=0.41.0",
"umap-learn==0.5.9.post2",
# Jupyter
"jupyterlab>=4.0.0",
]
[tool.uv]
# This is a workshop/application, not a library to be built
package = false