diff --git a/config/Config.qml b/config/Config.qml index 1d7cc321..1d1bcf11 100644 --- a/config/Config.qml +++ b/config/Config.qml @@ -1178,7 +1178,7 @@ Singleton { property string systemPrompt: "You are a helpful assistant running on a Linux system. You have access to some tools to control the system." property string tool: "none" property list extraModels: [] - property string defaultModel: "gemini-2.0-flash" + property string defaultModel: "gemini-2.5-flash-lite" property int sidebarWidth: 400 property string sidebarPosition: "right" property bool sidebarPinnedOnStartup: false diff --git a/config/defaults/ai.js b/config/defaults/ai.js index dd750c91..0de40a12 100644 --- a/config/defaults/ai.js +++ b/config/defaults/ai.js @@ -2,7 +2,7 @@ var data = { "systemPrompt": "You are a helpful assistant running on a Linux system. You have access to some tools to control the system.", "tool": "none", "extraModels": [], - "defaultModel": "gemini-2.0-flash", + "defaultModel": "gemini-2.5-flash-lite", "sidebarWidth": 400, "sidebarPosition": "right", "sidebarPinnedOnStartup": false diff --git a/modules/services/Ai.qml b/modules/services/Ai.qml index 5e540dc2..d9c3696a 100644 --- a/modules/services/Ai.qml +++ b/modules/services/Ai.qml @@ -32,7 +32,7 @@ Singleton { } function restoreModel() { - const lastModelId = StateService.get("lastAiModel", "gemini-2.0-flash"); + const lastModelId = StateService.get("lastAiModel", "gemini-2.5-flash-lite"); savedModelId = lastModelId; tryRestore(); persistenceReady = true;