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