(toolName: string)
| 25 | * Check if a tool should be collapsed by default |
| 26 | */ |
| 27 | export const shouldCollapseToolByDefault = (toolName: string): boolean => { |
| 28 | return COLLAPSED_BY_DEFAULT_TOOL_NAMES.includes(toolName as ToolName) |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * Check if an agent ID should be hidden from rendering |