(_inp, ctx)
| 35 | """A tool whose ``call`` records the abort_controller it received.""" |
| 36 | |
| 37 | def _call(_inp, ctx): |
| 38 | captured.append(ctx.abort_controller) |
| 39 | return ToolResult(name=name, output=f"ok:{name}") |
| 40 | |
| 41 | return build_tool( |
| 42 | name=name, |
nothing calls this directly
no test coverage detected