()
| 14 | |
| 15 | let thinkingIdCounter = 0 |
| 16 | const generateThinkingId = (): string => { |
| 17 | thinkingIdCounter++ |
| 18 | return `thinking-${thinkingIdCounter}` |
| 19 | } |
| 20 | |
| 21 | type AgentTextUpdate = |
| 22 | | { type: 'text'; mode: 'append'; content: string; textType: 'text' | 'reasoning' } |
no outgoing calls
no test coverage detected