🔧 chore(chatModal): update updateLastMessage function to include thought property in the message object

🔧 chore(chatModal): update updateLastMessage function to include thought property in the message object for stream type messages
This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-07-09 10:59:55 -03:00
commit 8a3e8f010a

View file

@ -184,7 +184,10 @@ export default function ChatModal({
isStream = false;
}
if (data.type === "stream" && isStream) {
updateLastMessage({ str: data.message });
updateLastMessage({
str: data.message,
thought: data.intermediate_steps,
});
}
}