(input: Partial<{
file_path: string;
content: string;
}> | undefined)
| 154 | return pos < content.length; |
| 155 | } |
| 156 | export function getToolUseSummary(input: Partial<{ |
| 157 | file_path: string; |
| 158 | content: string; |
| 159 | }> | undefined): string | null { |
| 160 | if (!input?.file_path) { |
| 161 | return null; |
| 162 | } |
| 163 | return getDisplayPath(input.file_path); |
| 164 | } |
| 165 | export function renderToolUseMessage(input: Partial<{ |
| 166 | file_path: string; |
| 167 | content: string; |
no test coverage detected