veerukhannan commited on
Commit
c784009
·
verified ·
1 Parent(s): 6a1ad16

Create requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +36 -0
requirements.txt ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Core API and Interface
2
+ gradio>=4.7.1
3
+ openai>=1.3.5
4
+ requests>=2.31.0
5
+
6
+ # Vector Database and Embeddings
7
+ chromadb>=0.4.18
8
+ sentence-transformers>=2.2.2
9
+ --extra-index-url https://download.pytorch.org/whl/cpu
10
+ torch>=2.1.1+cpu
11
+ transformers>=4.35.2
12
+
13
+ # Database Dependencies
14
+ hnswlib>=0.7.0
15
+ clickhouse-connect>=0.6.6
16
+
17
+ # Utility and Logging
18
+ python-dotenv>=1.0.0
19
+ loguru>=0.7.2
20
+ tqdm>=4.66.1
21
+ typing-extensions>=4.8.0
22
+ pydantic>=2.0.0
23
+
24
+ # ML and Data Processing
25
+ numpy>=1.24.3
26
+ scikit-learn>=1.3.2
27
+ pandas>=2.1.3
28
+
29
+ # Optional: Performance Optimization
30
+ cachetools>=5.3.2
31
+ fastapi>=0.104.1
32
+ uvicorn>=0.24.0
33
+
34
+ # Development and Testing
35
+ pytest>=7.4.3
36
+ black>=23.11.0