(toolId: string | undefined)
| 79 | |
| 80 | // Helper to get tool result for a specific tool call ID |
| 81 | const getToolResult = (toolId: string | undefined): any => { |
| 82 | if (!toolId) return null; |
| 83 | return toolResults.get(toolId) || null; |
| 84 | }; |
| 85 | |
| 86 | try { |
| 87 | // Skip rendering for meta messages that don't have meaningful content |
no outgoing calls
no test coverage detected