| 39 | } |
| 40 | |
| 41 | export interface ChatRequest { |
| 42 | message: string; |
| 43 | model?: string; |
| 44 | conversation_history?: Array<{ |
| 45 | role: 'user' | 'assistant'; |
| 46 | content: string; |
| 47 | }>; |
| 48 | } |
| 49 | |
| 50 | export interface ChatResponse { |
| 51 | response: string; |
nothing calls this directly
no outgoing calls
no test coverage detected