diff --git a/src/extension.ts b/src/extension.ts index cfef187..fc37d79 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -72,6 +72,11 @@ async function configUpdateTo_0912() { return; } } + + const defaultModel: any = UiUtilWrapper.getConfiguration("devchat", "defaultModel"); + if (!defaultModel) { + vscode.workspace.getConfiguration("devchat").update("defaultModel", "gpt-3.5-turbo"); + } }