| 22 | } |
| 23 | |
| 24 | interface ChatMessage { |
| 25 | id: string; |
| 26 | role: 'user' | 'assistant'; |
| 27 | content: string; |
| 28 | seq?: number; |
| 29 | process?: { |
| 30 | toolCalls: Array<{ tool: string; args?: any; result?: any; success: boolean }>; |
| 31 | thinking: string; |
| 32 | }; |
| 33 | } |
| 34 | |
| 35 | interface SessionMessage { |
| 36 | seq: number; |
nothing calls this directly
no outgoing calls
no test coverage detected