Update requirements.txt
#289
by
Raresmuntenas
- opened
- requirements.txt +29 -2
requirements.txt
CHANGED
|
@@ -1,2 +1,29 @@
|
|
| 1 |
-
|
| 2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core agent framework
|
| 2 |
+
smolagents[toolkit]>=1.0.0
|
| 3 |
+
|
| 4 |
+
# Gradio for UI
|
| 5 |
+
gradio>=4.0.0
|
| 6 |
+
|
| 7 |
+
# Data processing
|
| 8 |
+
pandas>=2.0.0
|
| 9 |
+
numpy>=1.24.0
|
| 10 |
+
|
| 11 |
+
# Web tools
|
| 12 |
+
requests>=2.28.0
|
| 13 |
+
beautifulsoup4>=4.12.0
|
| 14 |
+
|
| 15 |
+
# Wikipedia
|
| 16 |
+
wikipedia>=1.4.0
|
| 17 |
+
|
| 18 |
+
# YouTube transcripts
|
| 19 |
+
youtube-transcript-api>=0.6.0
|
| 20 |
+
|
| 21 |
+
# Environment variables
|
| 22 |
+
python-dotenv>=1.0.0
|
| 23 |
+
|
| 24 |
+
# LiteLLM for multi-provider support (optional)
|
| 25 |
+
litellm>=1.0.0
|
| 26 |
+
|
| 27 |
+
# Excel file support
|
| 28 |
+
openpyxl>=3.1.0
|
| 29 |
+
xlrd>=2.0.0
|