fix: always parse all assistant messages (#13)

This commit is contained in:
Dominic Elm
2024-07-26 11:09:35 +02:00
committed by GitHub
parent 14747cfa0f
commit 20e2d49993
2 changed files with 1 additions and 9 deletions

View File

@@ -4,13 +4,13 @@ import { useAnimate } from 'framer-motion';
import { useEffect, useRef, useState } from 'react';
import { cssTransition, toast, ToastContainer } from 'react-toastify';
import { useMessageParser, usePromptEnhancer, useSnapScroll } from '~/lib/hooks';
import { useChatHistory } from '~/lib/persistence';
import { chatStore } from '~/lib/stores/chat';
import { workbenchStore } from '~/lib/stores/workbench';
import { fileModificationsToHTML } from '~/utils/diff';
import { cubicEasingFn } from '~/utils/easings';
import { createScopedLogger } from '~/utils/logger';
import { BaseChat } from './BaseChat';
import { useChatHistory } from '~/lib/persistence';
const toastAnimation = cssTransition({
enter: 'animated fadeInRight',