Spaces:
Sleeping
Sleeping
File size: 146 Bytes
87cfab2 | 1 2 3 4 5 | import json
def get_all_questions():
with open("metadata.jsonl", "r", encoding="utf-8") as f:
return [json.loads(line) for line in f] |