-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (30 loc) · 821 Bytes
/
pyproject.toml
File metadata and controls
31 lines (30 loc) · 821 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
[project]
name = "DocVaultAI"
version = "0.1.0"
description = "A powerful privacy-firstRAG Model that lets you learn from your PDF documents, built with Streamlit, LangChain, Groq, and ChromaDB."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"chromadb>=0.4.0",
"faiss-cpu>=1.7.4",
"langchain==0.3.0",
"langchain-chroma==0.1.4",
"langchain-community==0.3.0",
"langchain-core==0.3.0",
"langchain-experimental==0.3.0",
"langchain-groq==0.2.0",
"langchain-huggingface==0.1.0",
"langchain-text-splitters==0.3.0",
"openai>=0.27.10",
"pandas>=2.3.3",
"pydantic>=2.0",
"pymupdf>=1.26.7",
"pypdf>=6.5.0",
"python-dotenv>=1.2.1",
"sentence-transformers>=5.2.0",
"streamlit>=1.52.2",
]
[dependency-groups]
dev = [
"ipykernel>=7.1.0",
]