(name: string)
| 20 | const MAX_PREVIEW_LINES = 8; |
| 21 | |
| 22 | function norm(name: string): string { |
| 23 | return (name || '').toLowerCase().trim(); |
| 24 | } |
| 25 | |
| 26 | /** Build a compact display for a settled tool result. */ |
| 27 | export function summarizeToolResult(name: string, result: string, isError: boolean): ToolDisplay { |
no outgoing calls
no test coverage detected