(
role: 'user' | 'assistant',
content: string,
)
| 47 | describe('Context Pruner Agent Integration', () => { |
| 48 | // Helper to create a text message |
| 49 | const createMessage = ( |
| 50 | role: 'user' | 'assistant', |
| 51 | content: string, |
| 52 | ): Message => ({ |
| 53 | role, |
| 54 | content: [{ type: 'text', text: content }], |
| 55 | }) |
| 56 | |
| 57 | // Helper to create a tool call message |
| 58 | const createToolCallMessage = ( |
no outgoing calls
no test coverage detected