MCPcopy Create free account
hub / github.com/Icecubesaad/OpenLLM-Studio / ChatInterfaceProps

Interface ChatInterfaceProps

src/components/ChatInterface.tsx:9–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7import type { Conversation, Message } from '../lib/types';
8
9interface 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
19export function ChatInterface({
20 dbPath,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected