fix: use correct image model id (#761)
This commit is contained in:
parent
cf4ab9a4a7
commit
5e059844a2
4 changed files with 5 additions and 16 deletions
|
|
@ -52,7 +52,6 @@ export function Chat({
|
|||
mutate('/api/history');
|
||||
},
|
||||
onError: (error) => {
|
||||
console.log(error);
|
||||
toast.error('An error occured, please try again!');
|
||||
},
|
||||
});
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ function PureMessages({
|
|||
ref={messagesContainerRef}
|
||||
className="flex flex-col min-w-0 gap-6 flex-1 overflow-y-scroll pt-4"
|
||||
>
|
||||
{/* {messages.length === 0 && <Overview />} */}
|
||||
{messages.length === 0 && <Overview />}
|
||||
|
||||
{messages.map((message, index) => (
|
||||
<PreviewMessage
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue