| 7 | import type { Conversation, Message } from '../lib/types'; |
| 8 | |
| 9 | interface ChatInterfaceProps { |
| 10 | dbPath: string; |
| 11 | conversation: Conversation; |
| 12 | messages: Message[]; |
| 13 | availableModels: string[]; |
| 14 | isLoadingMessages?: boolean; |
| 15 | onRefreshMessages: () => Promise<void> | void; |
| 16 | onConversationPatched: (updates: Partial<Conversation>) => void; |
| 17 | } |
| 18 | |
| 19 | export function ChatInterface({ |
| 20 | dbPath, |
nothing calls this directly
no outgoing calls
no test coverage detected