MerveA commited on
Commit
baf7cad
·
1 Parent(s): ff2786b
Files changed (1) hide show
  1. requirements.txt +21 -34
requirements.txt CHANGED
@@ -1,39 +1,26 @@
1
- # Core LangChain and dependencies
2
- langchain==0.0.285
3
- langchain-core==0.1.10
4
- langchain-google-genai==0.0.6
5
- pydantic==1.10.13
 
 
 
 
 
6
 
7
  # Vector store and embeddings
8
- sentence-transformers==2.2.2
9
- numpy==1.24.3
10
- scikit-learn==1.3.0
11
- torch==2.0.1
12
- transformers==4.33.2
13
 
14
- # Vector DB
15
- chromadb==0.3.21
16
- hnswlib==0.7.0
17
- clickhouse-connect==0.5.23
18
-
19
- # Gradio and FastAPI
20
- gradio==3.35.2
21
- starlette==0.20.4
22
- fastapi==0.85.1
23
- python-multipart==0.0.6
24
- uvicorn==0.22.0
25
- aiofiles==23.1.0
26
- httpx==0.24.1
27
- websockets==11.0.3
28
-
29
- # Utilities
30
- python-dotenv==1.0.0
31
- tqdm==4.66.1
32
- requests==2.31.0
33
- typing-extensions==4.5.0
34
- click==8.0.4
35
- Pillow>=9.5.0
36
- pandas>=1.5.0
37
- packaging>=23.1
38
 
39
 
 
1
+ # Core dependencies
2
+ langchain>=0.0.340
3
+ langchain-google-genai>=0.0.6
4
+ sentence-transformers>=2.2.2
5
+ chromadb>=0.4.18
6
+ requests>=2.31.0
7
+ gradio>=4.4.0
8
+ python-dotenv>=1.0.0
9
+ tqdm>=4.66.1
10
+ pydantic>=2.0,<3.0
11
 
12
  # Vector store and embeddings
13
+ numpy>=1.24.3
14
+ scikit-learn>=1.3.0
15
+ torch>=2.0.1
16
+ transformers>=4.33.2
 
17
 
18
+ # Required for Hugging Face Spaces
19
+ fastapi<0.99.0
20
+ httpx>=0.24.1
21
+ python-multipart>=0.0.6
22
+ uvicorn>=0.21.0
23
+ aiofiles>=22.0
24
+ websockets>=11.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
 
26