k96beni commited on
Commit
1515f2c
·
verified ·
1 Parent(s): 0cb7395

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +12 -8
requirements.txt CHANGED
@@ -1,18 +1,22 @@
 
 
1
  openai
2
  sentence-transformers
3
  faiss-cpu
 
 
4
  pandas
5
  numpy
6
- requests
7
- beautifulsoup4
8
- huggingface_hub>=0.19
9
  python-docx
10
  PyPDF2
11
- user-agents
12
- openpyxl
 
13
  gradio>=5.24.0
14
- fuzzywuzzy
15
- python-Levenshtein
 
 
16
  schedule
17
- anthropic>=0.19.0
18
 
 
1
+ # Core AI/ML dependencies
2
+ anthropic>=0.19.0
3
  openai
4
  sentence-transformers
5
  faiss-cpu
6
+
7
+ # Data processing
8
  pandas
9
  numpy
10
+ openpyxl
 
 
11
  python-docx
12
  PyPDF2
13
+
14
+ # Web and API
15
+ requests
16
  gradio>=5.24.0
17
+ huggingface_hub>=0.19
18
+
19
+ # Utilities
20
+ user-agents
21
  schedule
 
22