(toolName: ToolContentBlock['toolName'])
| 23 | typeof toolName === 'string' && toolName.startsWith('propose_') |
| 24 | |
| 25 | const getBaseToolName = (toolName: ToolContentBlock['toolName']): string => |
| 26 | isProposedToolName(toolName) ? toolName.slice('propose_'.length) : toolName |
| 27 | |
| 28 | const SUCCESSFUL_EDIT_MESSAGES = [ |
| 29 | 'String replace applied successfully', |
no test coverage detected