Change setting descriptions

This commit is contained in:
Webifi 2023-06-08 08:25:43 -05:00
parent 0eae377920
commit 0a24dd4066
1 changed files with 3 additions and 5 deletions

View File

@ -13,9 +13,7 @@ import {
type GlobalSettings,
type Request,
type Model,
type ControlAction
} from './Types.svelte'
export const defaultModel:Model = 'gpt-3.5-turbo'
@ -195,10 +193,10 @@ const summarySettings: ChatSetting[] = [
type: 'select',
options: [
{ value: '', text: 'OFF - Chat errors when token buffer full' },
{ value: 'fifo', text: 'First message in is first out' },
{ value: 'summary', text: 'Summarize past messages' }
{ value: 'fifo', text: 'FIFO - First message in is first out' },
{ value: 'summary', text: 'Summary - Summarize past messages' }
],
afterChange: (chatId, setting) => true // refresh settings]
afterChange: (chatId, setting) => true // refresh settings
},
{
key: 'summaryThreshold',