增加claude3模型

This commit is contained in:
sijinhui
2024-03-20 08:47:55 +08:00
parent bbd081e019
commit 156333fb54
2 changed files with 12 additions and 2 deletions

View File

@@ -137,7 +137,7 @@ export const useAppConfig = createPersistStore(
}),
{
name: StoreKey.Config,
version: 3.899,
version: 3.8991,
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.899) {
if (version < 3.8991) {
state.lastUpdate = Date.now();
return { ...DEFAULT_CONFIG };
}