Disable TC tags in MCP challenges query
Browse files
app.py
CHANGED
|
@@ -371,8 +371,9 @@ class UltimateTopcoderMCPEngine:
|
|
| 371 |
mcp_query["type"] = challenge_type
|
| 372 |
if track:
|
| 373 |
mcp_query["track"] = track
|
| 374 |
-
|
| 375 |
-
|
|
|
|
| 376 |
if query.strip():
|
| 377 |
mcp_query["search"] = query.strip()
|
| 378 |
|
|
|
|
| 371 |
mcp_query["type"] = challenge_type
|
| 372 |
if track:
|
| 373 |
mcp_query["track"] = track
|
| 374 |
+
# Commenting this out as it is wrong use of TC tags. This needs fix to proper convert to skills uring the quer-tc-skills tool.
|
| 375 |
+
# if skill_keywords:
|
| 376 |
+
# mcp_query["tags"] = skill_keywords
|
| 377 |
if query.strip():
|
| 378 |
mcp_query["search"] = query.strip()
|
| 379 |
|