Spaces:
No application file
No application file
Upload 2 files
Browse files- requirements.txt +22 -0
requirements.txt
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core dependencies
|
| 2 |
+
gradio>=4.44.0
|
| 3 |
+
pandas>=2.0.0
|
| 4 |
+
openpyxl>=3.1.0
|
| 5 |
+
|
| 6 |
+
# LangChain and RAG (newer modular packages)
|
| 7 |
+
langchain>=0.1.0
|
| 8 |
+
langchain-community>=0.0.10
|
| 9 |
+
langchain-core>=0.1.0
|
| 10 |
+
chromadb>=0.4.13
|
| 11 |
+
sentence-transformers>=2.2.0
|
| 12 |
+
|
| 13 |
+
# Embeddings and ML
|
| 14 |
+
transformers>=4.30.0
|
| 15 |
+
torch>=2.0.0
|
| 16 |
+
|
| 17 |
+
# API and utilities
|
| 18 |
+
requests>=2.31.0
|
| 19 |
+
huggingface_hub>=0.24.0
|
| 20 |
+
|
| 21 |
+
# SQLite workaround for HF Spaces (comment out for local dev if issues)
|
| 22 |
+
pysqlite3-binary>=0.5.0;platform_system=="Linux"
|