FD900 commited on
Commit
87cfab2
·
verified ·
1 Parent(s): 20aa14f

Create questions.py

Browse files
Files changed (1) hide show
  1. gaia_benchmark/questions.py +5 -0
gaia_benchmark/questions.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ import json
2
+
3
+ def get_all_questions():
4
+ with open("metadata.jsonl", "r", encoding="utf-8") as f:
5
+ return [json.loads(line) for line in f]