Spaces:
Sleeping
Sleeping
Update gaia_benchmark/questions.py
Browse files- gaia_benchmark/questions.py +15 -1
gaia_benchmark/questions.py
CHANGED
|
@@ -1 +1,15 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
This file fetches and exposes the GAIA benchmark questions
|
| 3 |
+
for the agent to solve. It uses the official get_questions()
|
| 4 |
+
function provided by the gaia_benchmark package.
|
| 5 |
+
"""
|
| 6 |
+
|
| 7 |
+
from gaia_benchmark import get_questions
|
| 8 |
+
|
| 9 |
+
# Load all official Level 1 GAIA benchmark questions
|
| 10 |
+
questions = get_questions()
|
| 11 |
+
|
| 12 |
+
# Each question is a dictionary with at least the following keys:
|
| 13 |
+
# - question_id
|
| 14 |
+
# - question
|
| 15 |
+
# - metadata
|