| 64 | } |
| 65 | |
| 66 | export interface Message { |
| 67 | role: string |
| 68 | content: string |
| 69 | thinking?: string |
| 70 | images?: Uint8Array[] | string[] |
| 71 | tool_calls?: ToolCall[] |
| 72 | tool_name?: string |
| 73 | } |
| 74 | |
| 75 | export interface ToolCall { |
| 76 | function: { |
nothing calls this directly
no outgoing calls
no test coverage detected