(text: str, command: str = "")
| 1315 | |
| 1316 | |
| 1317 | def _has_verification_context(text: str, command: str = "") -> bool: |
| 1318 | haystack = f"{command}\n{text}".lower() |
| 1319 | return any(marker in haystack for marker in _VERIFICATION_CONTEXT_MARKERS) |
| 1320 | |
| 1321 | |
| 1322 | def _contains_tool_failure_signal(text: str, command: str = "") -> bool: |
no outgoing calls
no test coverage detected