type fix
Browse files
app/components/chat/BaseChat.tsx
CHANGED
@@ -85,7 +85,7 @@ interface BaseChatProps {
|
|
85 |
input?: string;
|
86 |
model?: string;
|
87 |
setModel?: (model: string) => void;
|
88 |
-
provider
|
89 |
setProvider?: (provider: string) => void;
|
90 |
handleStop?: () => void;
|
91 |
sendMessage?: (event: React.UIEvent, messageInput?: string) => void;
|
|
|
85 |
input?: string;
|
86 |
model?: string;
|
87 |
setModel?: (model: string) => void;
|
88 |
+
provider?: string;
|
89 |
setProvider?: (provider: string) => void;
|
90 |
handleStop?: () => void;
|
91 |
sendMessage?: (event: React.UIEvent, messageInput?: string) => void;
|