From 9a4791cb0611af53680a9413d1a9b5974d7e021f Mon Sep 17 00:00:00 2001 From: Fahad Date: Fri, 8 Aug 2025 05:26:45 +0500 Subject: [PATCH] Updated description --- tests/test_challenge.py | 2 +- tools/challenge.py | 2 +- tools/debug.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_challenge.py b/tests/test_challenge.py index 6d93ccf..7bbe27e 100644 --- a/tests/test_challenge.py +++ b/tests/test_challenge.py @@ -93,7 +93,7 @@ class TestChallengeTool: response_data = json.loads(result[0].text) # Check response structure - assert response_data["status"] == "challenge_created" + assert response_data["status"] == "challenge_accepted" assert response_data["original_statement"] == "All software bugs are caused by syntax errors" assert "challenge_prompt" in response_data assert "instructions" in response_data diff --git a/tools/challenge.py b/tools/challenge.py index 2580dac..0c0b3bb 100644 --- a/tools/challenge.py +++ b/tools/challenge.py @@ -152,7 +152,7 @@ class ChallengeTool(SimpleTool): # Return the wrapped prompt as the response response_data = { - "status": "challenge_created", + "status": "challenge_accepted", "original_statement": request.prompt, "challenge_prompt": wrapped_prompt, "instructions": ( diff --git a/tools/debug.py b/tools/debug.py index bfe755f..f8e1a13 100644 --- a/tools/debug.py +++ b/tools/debug.py @@ -165,7 +165,7 @@ class DebugIssueTool(WorkflowTool): def get_description(self) -> str: return ( - "DEBUG & ROOT CAUSE ANALYSIS - Systematic self-investigation followed by expert analysis. " + "DEBUG & ROOT CAUSE ANALYSIS - Use this tool to perform any kind of debugging, bug hunting, or issue tracking. " "This tool guides you through a step-by-step investigation process where you:\n\n" "1. Start with step 1: describe the issue to investigate\n" "2. STOP and investigate using appropriate tools\n"