datdevsteve commited on
Commit
efee3d7
·
verified ·
1 Parent(s): 1bffe20

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +24 -21
requirements.txt CHANGED
@@ -1,24 +1,27 @@
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
- langchain-chroma==0.1.4
14
 
15
- # Vector Store
16
- chromadb==0.5.11
17
- sentence-transformers==3.2.1
18
 
19
- # Essentials
20
- groq==0.4.1
21
- gradio==5.5.0
22
- httpx==0.27.0
23
- pillow==10.4.0
24
- python-dotenv==1.0.1
 
 
 
 
 
 
 
 
 
1
+ # Core
2
+ fastapi
3
+ uvicorn
 
 
4
 
5
+ # LangChain (PINNED)
6
+ langchain==0.1.20
7
+ langchain-core==0.1.52
8
+ langchain-community==0.0.38
9
+ langchain-groq==0.1.3
 
 
10
 
11
+ # Groq SDK (PINNED)
12
+ groq==0.9.0
 
13
 
14
+ # HTTP client (CRITICAL FIX)
15
+ httpx==0.24.1
16
+
17
+ # Vector DB
18
+ chromadb==0.4.24
19
+
20
+ # Transformers / Embeddings
21
+ sentence-transformers
22
+ transformers
23
+ torch
24
+
25
+ # Utils
26
+ python-dotenv
27
+ pydantic<2.7