Commit ca47da5f authored by nick zheng's avatar nick zheng

fix: 多模型调试对话轮次设置

parent 37fa3827
...@@ -126,7 +126,7 @@ function handleQuestionSubmit() { ...@@ -126,7 +126,7 @@ function handleQuestionSubmit() {
multiModelDialogueList.value.forEach((modelItem, modelIndex) => { multiModelDialogueList.value.forEach((modelItem, modelIndex) => {
const messages: QuestionMessageItem[] = [] const messages: QuestionMessageItem[] = []
const { topP, temperature, agentSystem, modelNickName } = modelItem const { topP, temperature, agentSystem, modelNickName, communicationTurn } = modelItem
modelItem.messageList.forEach((messageItem) => { modelItem.messageList.forEach((messageItem) => {
messages.push({ messages.push({
...@@ -169,6 +169,7 @@ function handleQuestionSubmit() { ...@@ -169,6 +169,7 @@ function handleQuestionSubmit() {
temperature, temperature,
agentSystem, agentSystem,
modelNickName, modelNickName,
communicationTurn,
channel: ChannelType.multi_preview, channel: ChannelType.multi_preview,
}, },
controller: modelItem.controller, controller: modelItem.controller,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment