(tool_input, context)
| 337 | ran: list[dict] = [] |
| 338 | |
| 339 | def _call(tool_input, context): |
| 340 | ran.append(dict(tool_input)) |
| 341 | return ToolResult(name="DoThing", output={"ok": True}) |
| 342 | |
| 343 | tool = build_tool( |
| 344 | name="DoThing", |
nothing calls this directly
no test coverage detected