diff --git a/frontend/public/js/bing/chat/config.js b/frontend/public/js/bing/chat/config.js index e0690d6212..cffa6f72f4 100644 --- a/frontend/public/js/bing/chat/config.js +++ b/frontend/public/js/bing/chat/config.js @@ -460,6 +460,9 @@ _w['_sydConvConfig'] = { multimediaSearchFormCode: 'IACMIR', multimediaSearchEnableMediaCanvas: true, multimediaSearchMaxImageCount: 5, + // GPT 4 Turbo + enableTurboTone: false, + enableGPT4TurboSwitch: false, }; _w['_sydThreads'] = { threads: [], @@ -1649,6 +1652,11 @@ if (UserStoreGet('enterpriseEnable')) { _w['_sydConvTranslation']['inputRaiLabel'] = '你的个人和公司数据在此聊天中受到保护' } +if (UserStoreGet('copilotProEnable')) { + _w['_sydConvConfig']['enableTurboTone'] = true + _w['_sydConvConfig']['enableGPT4TurboSwitch'] = true +} + _G.Region = UserStoreGet('langRegion') || 'CN' _w['_sydConvConfig']['enableAutoReopenMic'] = UserStoreGet('autoReopenMic') || true diff --git a/frontend/src/components/ChatNav/ChatNav.vue b/frontend/src/components/ChatNav/ChatNav.vue index 542ccfbc6e..c822fc5bb0 100644 --- a/frontend/src/components/ChatNav/ChatNav.vue +++ b/frontend/src/components/ChatNav/ChatNav.vue @@ -1,6 +1,6 @@