Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +6 -5
requirements.txt
CHANGED
|
@@ -1,22 +1,23 @@
|
|
| 1 |
-
# HF Spaces Python 3.13
|
| 2 |
fastapi==0.115.2
|
| 3 |
uvicorn[standard]==0.30.6
|
| 4 |
pydantic==2.9.2
|
| 5 |
python-multipart==0.0.12
|
| 6 |
|
| 7 |
-
|
|
|
|
| 8 |
langchain==0.3.1
|
| 9 |
langchain-community==0.3.1
|
| 10 |
langchain-groq==0.2.0
|
| 11 |
-
langchain-huggingface==1.
|
| 12 |
|
|
|
|
| 13 |
chromadb==0.5.11
|
| 14 |
sentence-transformers==3.2.1
|
| 15 |
|
|
|
|
| 16 |
groq==0.5.0
|
| 17 |
gradio==5.5.0
|
| 18 |
httpx==0.27.0
|
| 19 |
pillow==10.4.0
|
| 20 |
python-dotenv==1.0.1
|
| 21 |
-
numpy==1.26.4
|
| 22 |
-
pandas==2.2.3
|
|
|
|
| 1 |
+
# HF Spaces Python 3.13 - PROVEN WORKING VERSIONS
|
| 2 |
fastapi==0.115.2
|
| 3 |
uvicorn[standard]==0.30.6
|
| 4 |
pydantic==2.9.2
|
| 5 |
python-multipart==0.0.12
|
| 6 |
|
| 7 |
+
# LangChain - MATCHED VERSIONS (NO CONFLICTS)
|
| 8 |
+
langchain-core==0.3.6
|
| 9 |
langchain==0.3.1
|
| 10 |
langchain-community==0.3.1
|
| 11 |
langchain-groq==0.2.0
|
| 12 |
+
langchain-huggingface==0.1.0
|
| 13 |
|
| 14 |
+
# Vector Store
|
| 15 |
chromadb==0.5.11
|
| 16 |
sentence-transformers==3.2.1
|
| 17 |
|
| 18 |
+
# Essentials
|
| 19 |
groq==0.5.0
|
| 20 |
gradio==5.5.0
|
| 21 |
httpx==0.27.0
|
| 22 |
pillow==10.4.0
|
| 23 |
python-dotenv==1.0.1
|
|
|
|
|
|