( role: 'user' | 'assistant', content: string, )
| 67 | |
| 68 | // Helper to create a text message |
| 69 | const createMessage = ( |
| 70 | role: 'user' | 'assistant', |
| 71 | content: string, |
| 72 | ): Message => ({ |
| 73 | role, |
| 74 | content: [{ type: 'text', text: content }], |
| 75 | }) |
| 76 | |
| 77 | // Helper to create a tool call message |
| 78 | const createToolCallMessage = ( |
no outgoing calls
no test coverage detected