| 55 | } |
| 56 | |
| 57 | export interface ChatMessage { |
| 58 | role: 'system' | 'user' | 'assistant' | 'tool'; |
| 59 | content: string; |
| 60 | tool_call_id?: string; |
| 61 | tool_calls?: ToolCall[]; |
| 62 | } |
| 63 | |
| 64 | export interface ToolCall { |
| 65 | id: string; |
nothing calls this directly
no outgoing calls
no test coverage detected