(messages: list[Any], step_type: str)
| 1526 | |
| 1527 | |
| 1528 | def _current_step_tool_result_signal(messages: list[Any], step_type: str) -> tuple[str, bool]: |
| 1529 | if step_type != "tool-result-followup": |
| 1530 | return "", False |
| 1531 | text, is_error, _command = _latest_tool_result_context(messages) |
| 1532 | return text, is_error |
| 1533 | |
| 1534 | |
| 1535 | def _current_step_tool_result_context( |
nothing calls this directly
no test coverage detected