Update app.py
Browse files
app.py
CHANGED
@@ -121,7 +121,7 @@ def run_and_submit_all( profile: gr.OAuthProfile | None):
|
|
121 |
continue
|
122 |
try:
|
123 |
#submitted_answer = agent(question_text)
|
124 |
-
|
125 |
answers_payload.append({"task_id": task_id, "submitted_answer": submitted_answer})
|
126 |
results_log.append({"Task ID": task_id, "Question": question_text, "Submitted Answer": submitted_answer})
|
127 |
print(f"✅ Successful handling of question #: {question_index}")
|
|
|
121 |
continue
|
122 |
try:
|
123 |
#submitted_answer = agent(question_text)
|
124 |
+
submitted_answer = "Placeholder"
|
125 |
answers_payload.append({"task_id": task_id, "submitted_answer": submitted_answer})
|
126 |
results_log.append({"Task ID": task_id, "Question": question_text, "Submitted Answer": submitted_answer})
|
127 |
print(f"✅ Successful handling of question #: {question_index}")
|