diff --git a/components/Chat/Chat.tsx b/components/Chat/Chat.tsx index d4548c7..1d42332 100644 --- a/components/Chat/Chat.tsx +++ b/components/Chat/Chat.tsx @@ -126,12 +126,12 @@ export const Chat: FC = ({ {conversation.messages.length === 0 ? ( <>
-
+
{models.length === 0 ? t('Loading...') : 'Chatbot UI'}
{models.length > 0 && ( -
+
= ({ } return ( -
+
{messageIsStreaming && (
); }; diff --git a/components/Chat/SystemPrompt.tsx b/components/Chat/SystemPrompt.tsx index ada4199..6bf33ce 100644 --- a/components/Chat/SystemPrompt.tsx +++ b/components/Chat/SystemPrompt.tsx @@ -52,7 +52,7 @@ export const SystemPrompt: FC = ({ conversation, onChangePrompt }) => {