Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tristandostaler authored Sep 3, 2024
1 parent 5d6baac commit 58c5825
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/migrate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ export const migrateV14 = (persistedState: LocalStorageInterfaceV13ToV14) => {
});
};

export const migrateV15 = (persistedState: LocalStorageInterfaceV14ToV15) => {
export const migrateV15 = (persistedState: LocalStorageInterfaceV14ToV16) => {
persistedState.chats.forEach((chat) => {
if(chat.config.model.toString() == "gpt-3.5-turbo" || chat.config.model.toString() == "gpt-3.5-turbo-16k") {
chat.config.model = 'gpt-4o-mini';
Expand Down

0 comments on commit 58c5825

Please sign in to comment.