| 14 | import type { ModelMessage, UserContent } from 'ai'; |
| 15 | |
| 16 | interface ChatSession { |
| 17 | modelId: string; |
| 18 | modelProvider: string; |
| 19 | provider: StreamProvider; |
| 20 | messages: ModelMessage[]; |
| 21 | } |
| 22 | |
| 23 | interface PersistedSession { |
| 24 | modelId: string; |
nothing calls this directly
no outgoing calls
no test coverage detected