Spaces:
Sleeping
Sleeping
Create questions.py
Browse files
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]
|