Browse Source

fix: agent moderation not working (#20673)

tags/1.4.2
Novice 5 months ago
parent
commit
0ccf8cb23e
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      web/app/components/base/chat/chat/hooks.ts

+ 1
- 1
web/app/components/base/chat/chat/hooks.ts View File

if (!newResponseItem) if (!newResponseItem)
return return


const isUseAgentThought = newResponseItem.agent_thoughts?.length > 0
const isUseAgentThought = newResponseItem.agent_thoughts?.length > 0 && newResponseItem.agent_thoughts[newResponseItem.agent_thoughts?.length - 1].thought === newResponseItem.answer
updateChatTreeNode(responseItem.id, { updateChatTreeNode(responseItem.id, {
content: isUseAgentThought ? '' : newResponseItem.answer, content: isUseAgentThought ? '' : newResponseItem.answer,
log: [ log: [

Loading…
Cancel
Save