Update app.py
Browse files
app.py
CHANGED
@@ -313,7 +313,9 @@ def run_and_submit_all( profile: gr.OAuthProfile | None):
|
|
313 |
print(f"An unexpected error occurred fetching questions: {e}")
|
314 |
return f"An unexpected error occurred fetching questions: {e}", None
|
315 |
|
316 |
-
questions_data = questions_data[[3,9,11,13,19]]
|
|
|
|
|
317 |
|
318 |
# 3. Run your Agent
|
319 |
results_log = []
|
|
|
313 |
print(f"An unexpected error occurred fetching questions: {e}")
|
314 |
return f"An unexpected error occurred fetching questions: {e}", None
|
315 |
|
316 |
+
questions_data = [questions_data[i] for i in [3,9,11,13,19]]
|
317 |
+
|
318 |
+
# Find those with attachments
|
319 |
|
320 |
# 3. Run your Agent
|
321 |
results_log = []
|