Change setting descriptions
This commit is contained in:
parent
0eae377920
commit
0a24dd4066
|
@ -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',
|
||||||
|
|
Loading…
Reference in New Issue