veerukhannan commited on
Commit
dbb74f9
·
verified ·
1 Parent(s): 2b186df

Create requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +23 -0
requirements.txt ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Core dependencies
2
+ gradio>=4.7.1
3
+ openai>=1.3.5
4
+ chromadb>=0.4.18
5
+ python-dotenv>=1.0.0
6
+
7
+ # Vector store and embeddings
8
+ sentence-transformers>=2.2.2
9
+ --extra-index-url https://download.pytorch.org/whl/cpu
10
+ torch>=2.1.1
11
+ transformers>=4.35.2
12
+
13
+ # Database and storage
14
+ hnswlib>=0.7.0
15
+
16
+ # Utility packages
17
+ requests>=2.31.0
18
+ python-json-logger>=2.0.7
19
+ numpy>=1.24.3
20
+ pydantic>=2.0.0
21
+
22
+ # Error handling and logging
23
+ loguru>=0.7.2