Generic naming to work with Gemini CLI / Claude Code

This commit is contained in:
Fahad
2025-06-27 23:41:20 +04:00
parent 75dc724ecd
commit bc447d4bcd
31 changed files with 139 additions and 139 deletions

View File

@@ -277,7 +277,7 @@ class ThinkDeepTool(WorkflowTool):
def should_skip_expert_analysis(self, request, consolidated_findings) -> bool:
"""
ThinkDeep tool skips expert analysis when Claude has "certain" confidence.
ThinkDeep tool skips expert analysis when the CLI agent has "certain" confidence.
"""
return request.confidence == "certain" and not request.next_step_required
@@ -299,7 +299,7 @@ class ThinkDeepTool(WorkflowTool):
def get_skip_reason(self) -> str:
"""Reason for skipping expert analysis."""
return "Claude expressed certain confidence in the deep thinking analysis - no additional validation needed"
return "Expressed 'certain' confidence in the deep thinking analysis - no additional validation needed"
def get_completion_message(self) -> str:
"""Message for completion without expert analysis."""