Spaces:
Sleeping
Sleeping
Test dataset save
Browse files
app.py
CHANGED
@@ -248,7 +248,7 @@ def run_and_submit_all( profile: gr.OAuthProfile | None, mock_submission: bool =
|
|
248 |
answers_payload = []
|
249 |
df_agent_steps = pd.DataFrame(columns=columns)
|
250 |
print(f"Running agent on {len(questions_data)} questions...")
|
251 |
-
for item in questions_data[1
|
252 |
task_id = item.get("task_id")
|
253 |
question_text = item.get("question")
|
254 |
file_path = get_full_file_path(task_id)
|
|
|
248 |
answers_payload = []
|
249 |
df_agent_steps = pd.DataFrame(columns=columns)
|
250 |
print(f"Running agent on {len(questions_data)} questions...")
|
251 |
+
for item in questions_data[:1]:
|
252 |
task_id = item.get("task_id")
|
253 |
question_text = item.get("question")
|
254 |
file_path = get_full_file_path(task_id)
|