FD900 commited on
Commit
17bf9a9
·
verified ·
1 Parent(s): ec60378

Update gaia_benchmark/questions.py

Browse files
Files changed (1) hide show
  1. gaia_benchmark/questions.py +15 -1
gaia_benchmark/questions.py CHANGED
@@ -1 +1,15 @@
1
- # questions.py - GAIA questions
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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