diff --git a/client/src/utils/handleSubmit.js b/client/src/utils/handleSubmit.js index a3f7b739f1..b598dddf92 100644 --- a/client/src/utils/handleSubmit.js +++ b/client/src/utils/handleSubmit.js @@ -40,13 +40,13 @@ const useMessageHandler = () => { endpointOption = { endpoint, jailbreak: currentConversation?.jailbreak || false, - jailbreakConversationId: currentConversation?.jailbreakConversationId || null, - conversationSignature: currentConversation?.conversationSignature || null, systemMessage: currentConversation?.systemMessage || null, context: currentConversation?.context || null, + toneStyle: currentConversation?.toneStyle || 'fast', + jailbreakConversationId: currentConversation?.jailbreakConversationId || null, + conversationSignature: currentConversation?.conversationSignature || null, clientId: currentConversation?.clientId || null, - invocationId: currentConversation?.invocationId || 1, - toneStyle: currentConversation?.toneStyle || 'fast' + invocationId: currentConversation?.invocationId || 1 }; responseSender = endpointOption.jailbreak ? 'Sydney' : 'BingAI'; } else if (endpoint === 'chatGPTBrowser') {