( toolCallId: string, isCollapsed?: boolean, userOpened?: boolean, )
| 32 | |
| 33 | // Helper to create tool blocks |
| 34 | const createToolBlock = ( |
| 35 | toolCallId: string, |
| 36 | isCollapsed?: boolean, |
| 37 | userOpened?: boolean, |
| 38 | ): ContentBlock => ({ |
| 39 | type: 'tool', |
| 40 | toolCallId, |
| 41 | toolName: 'read_files', |
| 42 | input: {}, |
| 43 | isCollapsed, |
| 44 | userOpened, |
| 45 | }) |
| 46 | |
| 47 | // Helper to create agent blocks |
| 48 | const createAgentBlock = ( |
no outgoing calls
no test coverage detected