This commit is contained in:
eeee0717
2025-06-19 16:10:08 +08:00
parent 9566ce3d9a
commit ef4a7b042b
3 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -54,7 +54,7 @@ const persistedReducer = persistReducer(
{
key: 'cherry-studio',
storage,
version: 113,
version: 115,
blacklist: ['runtime', 'messages', 'messageBlocks'],
migrate
},
+1 -1
View File
@@ -1613,7 +1613,7 @@ const migrateConfig = {
return state
}
},
'113': (state: RootState) => {
'115': (state: RootState) => {
try {
if (!state.settings.userId) {
state.settings.userId = uuid()
+1
View File
@@ -173,6 +173,7 @@ export type ProviderType =
| 'qwenlm'
| 'azure-openai'
| 'vertexai'
| 'mistral'
export type ModelType = 'text' | 'vision' | 'embedding' | 'reasoning' | 'function_calling' | 'web_search'