You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to set the default model for new chats in file Chat.svelte, but new chats always default to "gpt-3.5-turbo" despite me changing it to 'gpt-4' in file.
Chat.svelte snippet:
const modelSetting: Settings & SettingsSelect = {
key: 'model',
name: 'Model',
default: 'gpt-4',
title: 'The model to use - GPT-3.5 is cheaper, but GPT-4 is more powerful.',
options: supportedModels,
type: 'select'
}
The text was updated successfully, but these errors were encountered:
I tried to set the default model for new chats in file Chat.svelte, but new chats always default to "gpt-3.5-turbo" despite me changing it to 'gpt-4' in file.
Chat.svelte snippet:
const modelSetting: Settings & SettingsSelect = {
key: 'model',
name: 'Model',
default: 'gpt-4',
title: 'The model to use - GPT-3.5 is cheaper, but GPT-4 is more powerful.',
options: supportedModels,
type: 'select'
}
The text was updated successfully, but these errors were encountered: