Spaces:
Runtime error
Runtime error
Deploy GAIA agent
Browse files- requirements.txt +31 -8
requirements.txt
CHANGED
@@ -1,10 +1,33 @@
|
|
1 |
-
|
|
|
2 |
requests==2.31.0
|
3 |
pandas==2.0.3
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core dependencies
|
2 |
+
gradio==4.44.0
|
3 |
requests==2.31.0
|
4 |
pandas==2.0.3
|
5 |
+
numpy==1.24.3
|
6 |
+
|
7 |
+
# SmolaAgent framework - lightweight agent framework
|
8 |
+
smolagents==0.3.3
|
9 |
+
|
10 |
+
# Image processing (lightweight)
|
11 |
+
Pillow==10.0.1
|
12 |
+
|
13 |
+
# Plotting (lightweight alternative to matplotlib)
|
14 |
+
matplotlib==3.7.2
|
15 |
+
|
16 |
+
# JSON and data processing
|
17 |
+
pathlib
|
18 |
+
|
19 |
+
# Web search
|
20 |
+
duckduckgo-search==3.9.6
|
21 |
+
|
22 |
+
# LLM integration (lightweight)
|
23 |
+
litellm==1.44.14
|
24 |
+
|
25 |
+
# Optional: For better performance with limited resources
|
26 |
+
psutil==5.9.5
|
27 |
+
|
28 |
+
# File processing utilities
|
29 |
+
openpyxl==3.1.2 # For Excel files if needed
|
30 |
+
python-magic==0.4.27 # For file type detection
|
31 |
+
|
32 |
+
# Math and scientific computing (minimal)
|
33 |
+
sympy==1.12 # For symbolic math if needed
|