(address: string)
| 68 | /** Strip the proxy-root `tools.` prefix from a full address so it becomes the |
| 69 | * sandbox-callable path the model writes after `tools.`. */ |
| 70 | const addressToPath = (address: string): string => |
| 71 | address.startsWith(ADDRESS_PREFIX) ? address.slice(ADDRESS_PREFIX.length) : address; |
| 72 | |
| 73 | type DescribedTool = { |
| 74 | readonly path: string; |
no outgoing calls
no test coverage detected