| 117 | export type OpenRouterMessageContent = string | (OpenRouterContentText | OpenRouterContentImage)[]; |
| 118 | |
| 119 | export interface OpenRouterMessage { |
| 120 | role: 'system' | 'user' | 'assistant' | 'tool'; |
| 121 | content: OpenRouterMessageContent; |
| 122 | name?: string; |
| 123 | tool_call_id?: string; |
| 124 | tool_calls?: OpenRouterToolCall[]; |
| 125 | } |
| 126 | |
| 127 | export interface OpenRouterToolCallFunction { |
| 128 | name: string; |
nothing calls this directly
no outgoing calls
no test coverage detected