iQuentin commited on
Commit
2c679cf
·
verified ·
1 Parent(s): 2b967a2

Change question

Browse files
Files changed (1) hide show
  1. simuGAIA.py +7 -7
simuGAIA.py CHANGED
@@ -16,19 +16,19 @@ from agent import QAgent
16
  # Simulation of GAIA benchmark questions
17
  SAMPLE_QUESTIONS = [
18
  {
19
- "task_id": "task_001",
20
- "question": "What is the capital of France?",
21
- "expected_answer": "Paris",
22
  "has_file": False,
23
  "file_content": None
24
  }
25
  ]
26
 
27
  SAMPLE_QUESTIONS_OUT = [
28
- {
29
- "task_id": "task_002",
30
- "question": "What is the square root of 144?",
31
- "expected_answer": "12",
32
  "has_file": False,
33
  "file_content": None
34
  },
 
16
  # Simulation of GAIA benchmark questions
17
  SAMPLE_QUESTIONS = [
18
  {
19
+ "task_id": "task_002",
20
+ "question": "What is the square root of 144?",
21
+ "expected_answer": "12",
22
  "has_file": False,
23
  "file_content": None
24
  }
25
  ]
26
 
27
  SAMPLE_QUESTIONS_OUT = [
28
+ {
29
+ "task_id": "task_001",
30
+ "question": "What is the capital of France?",
31
+ "expected_answer": "Paris",
32
  "has_file": False,
33
  "file_content": None
34
  },