fix: requestOptions (#1188)

修复页面上重复执行onRegenerate操作,会丢失上下文的问题
main
LeafSummer 2 years ago committed by GitHub
parent abc4c3ad22
commit 9b66fed26e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -233,7 +233,7 @@ async function onRegenerate(index: number) {
error: false,
loading: true,
conversationOptions: null,
requestOptions: { prompt: message, ...options },
requestOptions: { prompt: message, options: { ...options } },
},
)
@ -264,7 +264,7 @@ async function onRegenerate(index: number) {
error: false,
loading: true,
conversationOptions: { conversationId: data.conversationId, parentMessageId: data.id },
requestOptions: { prompt: message, ...options },
requestOptions: { prompt: message, options: { ...options } },
},
)
@ -308,7 +308,7 @@ async function onRegenerate(index: number) {
error: true,
loading: false,
conversationOptions: null,
requestOptions: { prompt: message, ...options },
requestOptions: { prompt: message, options: { ...options } },
},
)
}

Loading…
Cancel
Save