Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/Config.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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<var> 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
Expand Down
2 changes: 1 addition & 1 deletion config/defaults/ai.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion modules/services/Ai.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down