Spaces:
Sleeping
Sleeping
Upload 9 files
Browse files- agent.py +1 -0
- app.py +1 -0
- gaia_benchmark/__init__.py +1 -0
- gaia_benchmark/gaia_interface.py +1 -0
- gaia_benchmark/questions.py +1 -0
- gaia_benchmark/run.py +1 -0
- prompts.yaml +1 -0
- requirements.txt +3 -0
- tools.py +1 -0
agent.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
# agent.py - Core agent logic
|
app.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
# app.py - Gradio app for submission
|
gaia_benchmark/__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
# __init__.py for GAIA benchmark
|
gaia_benchmark/gaia_interface.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
# gaia_interface.py - Leaderboard submission
|
gaia_benchmark/questions.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
# questions.py - GAIA questions
|
gaia_benchmark/run.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
# run.py - run_and_submit_all logic
|
prompts.yaml
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
# prompts.yaml - System prompt configuration
|
requirements.txt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
gradio
|
| 2 |
+
requests
|
| 3 |
+
yaml
|
tools.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
# tools.py - Tool definitions
|