Spaces:
Sleeping
Sleeping
some comments
Browse files- simuGAIA.py +1 -1
simuGAIA.py
CHANGED
@@ -240,7 +240,7 @@ def run_simuGAIA_all( profile: gr.OAuthProfile | None, submit: Optional[bool] =
|
|
240 |
print(f"Skipping item with missing task_id or question: {item}")
|
241 |
continue
|
242 |
try:
|
243 |
-
if question_text.startswith("How many studio albums"):
|
244 |
print(f"First question detected. INVOKING AGENT! Be careful!")
|
245 |
submitted_answer = agent.invoke(question_text)
|
246 |
answers_payload.append({"task_id": task_id, "submitted_answer": submitted_answer})
|
|
|
240 |
print(f"Skipping item with missing task_id or question: {item}")
|
241 |
continue
|
242 |
try:
|
243 |
+
if question_text.startswith("How many studio albums"): # <--- REMOVE THAT FOR ALL QUESTIONS
|
244 |
print(f"First question detected. INVOKING AGENT! Be careful!")
|
245 |
submitted_answer = agent.invoke(question_text)
|
246 |
answers_payload.append({"task_id": task_id, "submitted_answer": submitted_answer})
|