Update requirements.txt
Browse files- requirements.txt +22 -1
requirements.txt
CHANGED
@@ -1,5 +1,26 @@
|
|
1 |
-
|
2 |
smolagents==1.13.0
|
3 |
requests
|
4 |
duckduckgo_search
|
5 |
pandas
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core dependencies
|
2 |
smolagents==1.13.0
|
3 |
requests
|
4 |
duckduckgo_search
|
5 |
pandas
|
6 |
+
markdownify
|
7 |
+
pytz
|
8 |
+
pyyaml
|
9 |
+
gradio>=3.50.0
|
10 |
+
|
11 |
+
# Document creation dependencies
|
12 |
+
python-docx
|
13 |
+
docx2pdf
|
14 |
+
|
15 |
+
# Model-specific dependencies
|
16 |
+
google-generativeai>=0.3.0 # For Gemini model
|
17 |
+
|
18 |
+
# Alternative model dependencies (uncomment as needed)
|
19 |
+
# openai>=1.0.0 # For OpenAI models
|
20 |
+
# anthropic>=0.5.0 # For Claude models
|
21 |
+
# huggingface-hub>=0.19.0 # For improved HF integration
|
22 |
+
|
23 |
+
# Optional dependencies for handling various file types
|
24 |
+
python-docx
|
25 |
+
docx2pdf
|
26 |
+
pillow # For image processing
|