diff --git a/app/constant.ts b/app/constant.ts index 3171b1b07..ac8b1103e 100644 --- a/app/constant.ts +++ b/app/constant.ts @@ -147,7 +147,7 @@ export const DEFAULT_MODELS = [ { name: "gpt-4-1106-preview", describe: "GPT-4", - available: true, + available: false, provider: { id: "openai", providerName: "OpenAI", diff --git a/app/store/config.ts b/app/store/config.ts index 1503b5ae3..7b5109304 100644 --- a/app/store/config.ts +++ b/app/store/config.ts @@ -137,7 +137,7 @@ export const useAppConfig = createPersistStore( }), { name: StoreKey.Config, - version: 3.895, + version: 3.896, migrate(persistedState, version) { const state = persistedState as ChatConfig; @@ -168,7 +168,7 @@ export const useAppConfig = createPersistStore( if (version < 3.8) { state.lastUpdate = Date.now(); } - if (version < 3.895) { + if (version < 3.896) { state.lastUpdate = Date.now(); return { ...DEFAULT_CONFIG }; }