(toolName: ToolContentBlock['toolName'])
| 20 | ] as const |
| 21 | |
| 22 | const isProposedToolName = (toolName: ToolContentBlock['toolName']): boolean => |
| 23 | typeof toolName === 'string' && toolName.startsWith('propose_') |
| 24 | |
| 25 | const getBaseToolName = (toolName: ToolContentBlock['toolName']): string => |
| 26 | isProposedToolName(toolName) ? toolName.slice('propose_'.length) : toolName |
no outgoing calls
no test coverage detected