Переглянути джерело

fix: agent moderation not working (#20673)

tags/1.4.2
Novice 5 місяці тому
джерело
коміт
0ccf8cb23e
Аккаунт користувача з таким Email не знайдено
1 змінених файлів з 1 додано та 1 видалено
  1. 1
    1
      web/app/components/base/chat/chat/hooks.ts

+ 1
- 1
web/app/components/base/chat/chat/hooks.ts Переглянути файл

@@ -366,7 +366,7 @@ export const useChat = (
if (!newResponseItem)
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, {
content: isUseAgentThought ? '' : newResponseItem.answer,
log: [

Завантаження…
Відмінити
Зберегти