🔧 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:
parent
c959d7bdd5
commit
8a3e8f010a
1 changed files with 4 additions and 1 deletions
|
|
@ -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,
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue