()
| 617 | |
| 618 | |
| 619 | def test_parse_tool_call_embedded_json(): |
| 620 | raw = 'Here is my response: {"tool": "sites", "args": {}} done.' |
| 621 | result = _parse_tool_call(raw) |
| 622 | assert result["tool"] == "sites" |
| 623 | |
| 624 | |
| 625 | def test_parse_tool_call_unrecoverable_returns_direct_answer(): |
nothing calls this directly
no test coverage detected