| 30 | } |
| 31 | |
| 32 | export interface ChatSession { |
| 33 | id: string; |
| 34 | title: string; |
| 35 | created_at: string; |
| 36 | updated_at: string; |
| 37 | model_used: string; |
| 38 | message_count: number; |
| 39 | } |
| 40 | |
| 41 | export interface ChatRequest { |
| 42 | message: string; |
nothing calls this directly
no outgoing calls
no test coverage detected