(_i, _c)
| 98 | ran: list = [] |
| 99 | |
| 100 | def call(_i, _c): |
| 101 | ran.append(True) |
| 102 | return ToolResult(name="StubTool", output="ok") |
| 103 | |
| 104 | tool = build_tool( |
| 105 | name="StubTool", input_schema=_SCHEMA, call=call, |
nothing calls this directly
no test coverage detected