Skip to content

Commit

Permalink
mark gpt-4-turbo switch deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
juzeon committed Mar 26, 2024
1 parent a4246fd commit 0aba373
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions frontend/src/pages/IndexPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -469,17 +469,6 @@ function generateTitle() {
label="Preset"
density="compact"
class="mx-2"></v-select>
<v-tooltip
text="Enable the latest gpt-4-turbo model will increase the speed of response,
reduce repeatability, but be harder to jailbreak."
location="bottom">
<template #activator="{props}">
<v-switch v-bind="props" v-model="currentWorkspace.gpt_4_turbo" label="GPT-4-Turbo"
density="compact"
:disabled="currentWorkspace.backend!=='Sydney'" class="mx-2"
color="primary"></v-switch>
</template>
</v-tooltip>
<v-tooltip text="Plugins" location="bottom">
<template #activator="{props}">
<v-btn v-bind="props" @click="pluginDialog=true" icon variant="text" color="primary">
Expand Down Expand Up @@ -547,6 +536,18 @@ function generateTitle() {
color="primary"></v-switch>
</template>
</v-tooltip>
<v-divider class="mb-3"></v-divider>
<div class="text-caption" style="color: #999">Deprecated Options</div>
<v-tooltip
text="Note: this switch may have no effect now as Bing has rolled out turbo for all users."
location="bottom">
<template #activator="{props}">
<v-switch v-bind="props" v-model="currentWorkspace.gpt_4_turbo" label="GPT-4-Turbo"
density="compact"
:disabled="currentWorkspace.backend!=='Sydney'"
color="primary"></v-switch>
</template>
</v-tooltip>
</div>
</v-card-text>
<v-card-actions>
Expand Down

0 comments on commit 0aba373

Please sign in to comment.