(text: string)
| 106 | } |
| 107 | |
| 108 | function user(text: string): ContextMessage { |
| 109 | return { role: 'user', content: [textPart(text)], toolCalls: [] }; |
| 110 | } |
| 111 | |
| 112 | function notification(text: string): ContextMessage { |
| 113 | return { |
no test coverage detected