Spaces:
Sleeping
Sleeping
use smaller prompt for code agent
Browse files
app.py
CHANGED
|
@@ -68,7 +68,7 @@ def run_and_submit_all( profile: gr.OAuthProfile | None):
|
|
| 68 |
answers_payload = []
|
| 69 |
print(f"Running agent on {len(questions_data)} questions...")
|
| 70 |
# SELECT 1 QUESTION FOR DEBUG
|
| 71 |
-
for item in
|
| 72 |
task_id = item.get("task_id")
|
| 73 |
question_text = item.get("question")
|
| 74 |
# add fetching the link associated with the question
|
|
|
|
| 68 |
answers_payload = []
|
| 69 |
print(f"Running agent on {len(questions_data)} questions...")
|
| 70 |
# SELECT 1 QUESTION FOR DEBUG
|
| 71 |
+
for item in questions_data:
|
| 72 |
task_id = item.get("task_id")
|
| 73 |
question_text = item.get("question")
|
| 74 |
# add fetching the link associated with the question
|