Spaces:
Sleeping
Sleeping
Chess question
Browse files
app.py
CHANGED
|
@@ -84,6 +84,8 @@ def run_and_submit_all( profile: gr.OAuthProfile | None, mock_submission: bool =
|
|
| 84 |
continue
|
| 85 |
if "youtube" in question_text.lower():
|
| 86 |
continue
|
|
|
|
|
|
|
| 87 |
try:
|
| 88 |
if file_path:
|
| 89 |
question_text = question_text + f"\n\nHere is also the path to the file for the task (file name matches with task ID and is not in plain English): {file_path}"
|
|
|
|
| 84 |
continue
|
| 85 |
if "youtube" in question_text.lower():
|
| 86 |
continue
|
| 87 |
+
if "chess" not in question_text.lower():
|
| 88 |
+
continue
|
| 89 |
try:
|
| 90 |
if file_path:
|
| 91 |
question_text = question_text + f"\n\nHere is also the path to the file for the task (file name matches with task ID and is not in plain English): {file_path}"
|