Spaces:
Sleeping
Sleeping
fix bug
Browse files
app.py
CHANGED
@@ -82,7 +82,7 @@ def run_and_submit_all( profile: gr.OAuthProfile | None, mock_submission: bool =
|
|
82 |
if not task_id or question_text is None:
|
83 |
print(f"Skipping item with missing task_id or question: {item}")
|
84 |
continue
|
85 |
-
if "wiki" in question_text.
|
86 |
continue
|
87 |
try:
|
88 |
if file_path:
|
|
|
82 |
if not task_id or question_text is None:
|
83 |
print(f"Skipping item with missing task_id or question: {item}")
|
84 |
continue
|
85 |
+
if "wiki" in question_text.lower() or "youtube" in question_text.lower():
|
86 |
continue
|
87 |
try:
|
88 |
if file_path:
|