chatgpt-svelte
chatgpt-svelte copied to clipboard
I found a little bug that you might be interested to fix
Bug : After the bot answer and we click "New Chat" the last answer is stuck in display, to fix it :
const reset = () => {
store.set({
messages: [
{ role: 'assistant', content: introduction }
],
chatState: 'idle'
});
answer.set('')
}
its @chat-messages.ts
Just minor bug, love your chat starter app BTW