(text: string)
| 166 | } |
| 167 | |
| 168 | function userMessage(text: string): { role: 'user'; content: Array<{ type: 'text'; text: string }>; toolCalls: never[] } { |
| 169 | return { role: 'user', content: [{ type: 'text', text }], toolCalls: [] }; |
| 170 | } |
| 171 | |
| 172 | // ─── tests ─────────────────────────────────────────────────────────────── |
| 173 |
no outgoing calls
no test coverage detected