Spaces:
Sleeping
Sleeping
Add files via upload
Browse files- .gitignore +11 -0
- requirements.txt +33 -0
.gitignore
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Python cache
|
| 2 |
+
**/__pycache__/
|
| 3 |
+
*.pyc
|
| 4 |
+
|
| 5 |
+
# Secrets and API Keys
|
| 6 |
+
.env
|
| 7 |
+
**/generated_chroma_database/
|
| 8 |
+
**/temp_git_repo_storage/
|
| 9 |
+
|
| 10 |
+
# Virtual Environment
|
| 11 |
+
/venv/
|
requirements.txt
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
--extra-index-url https://download.pytorch.org/whl/cu130
|
| 2 |
+
|
| 3 |
+
# --- Core Frameworks & GenAI ---
|
| 4 |
+
langchain==1.2.15
|
| 5 |
+
langchain-core==1.2.28
|
| 6 |
+
langchain-community==0.4.1
|
| 7 |
+
langchain-google-genai==4.2.1
|
| 8 |
+
langgraph==1.1.6
|
| 9 |
+
google-genai==1.70.0
|
| 10 |
+
|
| 11 |
+
# --- Vector Database & Embeddings ---
|
| 12 |
+
langchain-chroma==1.1.0
|
| 13 |
+
chromadb==1.5.5
|
| 14 |
+
sentence-transformers==5.3.0
|
| 15 |
+
torch>=2.2.0
|
| 16 |
+
|
| 17 |
+
# --- Document Processing & Chunking ---
|
| 18 |
+
langchain-text-splitters==1.1.1
|
| 19 |
+
tree-sitter==0.25.2
|
| 20 |
+
tree-sitter-language-pack==1.4.2
|
| 21 |
+
chonkie==1.6.2
|
| 22 |
+
pypdf==6.9.2
|
| 23 |
+
tiktoken==0.12.0
|
| 24 |
+
pillow==12.2.0
|
| 25 |
+
|
| 26 |
+
# --- Utilities & Infrastructure ---
|
| 27 |
+
python-dotenv==1.2.2
|
| 28 |
+
pydantic==2.13.0
|
| 29 |
+
requests==2.33.1
|
| 30 |
+
tqdm==4.67.3
|
| 31 |
+
pathspec==1.0.4
|
| 32 |
+
pyyaml==6.0.3
|
| 33 |
+
websockets==16.0
|