(_i, ctx)
| 151 | ) |
| 152 | |
| 153 | def second_call(_i, ctx): |
| 154 | observed.append(str(ctx.cwd)) |
| 155 | return ToolResult(name="Second", output="two") |
| 156 | |
| 157 | first = build_tool( |
| 158 | name="First", input_schema=_SCHEMA, call=first_call, |
nothing calls this directly
no test coverage detected