| 48 | } |
| 49 | |
| 50 | export interface ChatMessage { |
| 51 | id: string |
| 52 | role: 'user' | 'assistant' |
| 53 | content: string |
| 54 | timestamp: string |
| 55 | toolCalls?: ToolCall[] |
| 56 | isTyping?: boolean |
| 57 | } |
| 58 | |
| 59 | export interface ToolCall { |
| 60 | name: string |
nothing calls this directly
no outgoing calls
no test coverage detected