From 26b7f5892e33adc0eb7d96993aa5f964c1e1bcfa Mon Sep 17 00:00:00 2001 From: jonasgabriel18 Date: Mon, 17 Jun 2024 15:51:50 -0300 Subject: [PATCH] corrections --- src/components/chatbot/chatbot.tsx | 6 +++--- src/components/selectFileCard/selectFileCard.tsx | 8 +++----- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/src/components/chatbot/chatbot.tsx b/src/components/chatbot/chatbot.tsx index b7113369..c3ab198e 100644 --- a/src/components/chatbot/chatbot.tsx +++ b/src/components/chatbot/chatbot.tsx @@ -57,14 +57,14 @@ const ChatBot: React.FC = () => { const sendAPIKeyMessage = () => { setChatHistory(prevHistory => [ ...prevHistory, - { text: "Olá! Eu sou o (LinguiTalk ou LinguaBot). Coloca a sua chave:", origin: 'bot' } + { text: "Olá! Eu sou o LinguiTalk, um chatbot para lhe auxiliar na exploração dos seus dados! Primeiro, insira uma chave API válida do ChatGPT:", origin: 'bot' } ]); }; const sendInitialMessage = () => { setChatHistory(prevHistory => [ ...prevHistory, - { text: "Olá! Eu sou o (LinguiTalk ou LinguaBot). Como posso ajudar?", origin: 'bot' } + { text: "Olá! Eu sou o LinguiTalk. Como posso ajudar?", origin: 'bot' } ]); }; @@ -98,7 +98,7 @@ const ChatBot: React.FC = () => { {isOpen && (
-

LinguiTalk ou LinguaBot

+

LinguiTalk

); -} +} \ No newline at end of file