| 7 | |
| 8 | /** A single message in conversation history. */ |
| 9 | export interface ChatMessage { |
| 10 | role: string; |
| 11 | content: string; |
| 12 | } |
| 13 | |
| 14 | /** Response from the handler — either plain text or a state transition. */ |
| 15 | export interface HandlerResponse { |
nothing calls this directly
no outgoing calls
no test coverage detected