Update app.py
Browse filesReduce number of questions
app.py
CHANGED
|
@@ -60,6 +60,8 @@ def run_and_submit_all( profile: gr.OAuthProfile | None):
|
|
| 60 |
print(f"An unexpected error occurred fetching questions: {e}")
|
| 61 |
return f"An unexpected error occurred fetching questions: {e}", None
|
| 62 |
|
|
|
|
|
|
|
| 63 |
# 3. Run your Agent
|
| 64 |
results_log = []
|
| 65 |
answers_payload = []
|
|
|
|
| 60 |
print(f"An unexpected error occurred fetching questions: {e}")
|
| 61 |
return f"An unexpected error occurred fetching questions: {e}", None
|
| 62 |
|
| 63 |
+
questions_data = questions_data[:1]
|
| 64 |
+
|
| 65 |
# 3. Run your Agent
|
| 66 |
results_log = []
|
| 67 |
answers_payload = []
|