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