| 77 | } |
| 78 | |
| 79 | export interface ChatMessage { |
| 80 | id: string; |
| 81 | agent_id: string; |
| 82 | user_id: string; |
| 83 | role: 'user' | 'assistant' | 'system'; |
| 84 | content: string; |
| 85 | created_at: string; |
| 86 | } |
| 87 | |
| 88 | export interface TokenResponse { |
| 89 | access_token: string; |
nothing calls this directly
no outgoing calls
no test coverage detected