fix: update release date in CHANGELOG and change default copilot model to gpt-5-mini

This commit is contained in:
Elio Struyf
2026-07-02 11:02:52 +02:00
parent 79c1d81cbb
commit cb89562f1d
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
# Change Log
## [10.11.0] - 2026-xx-xx - [Release notes](https://beta.frontmatter.codes/updates/v10.11.0)
## [10.11.0] - 2026-07-02 - [Release notes](https://beta.frontmatter.codes/updates/v10.11.0)
### 🎨 Enhancements
+1 -1
View File
@@ -2186,7 +2186,7 @@
},
"frontMatter.copilot.family": {
"type": "string",
"default": "gpt-4o-mini",
"default": "gpt-5-mini",
"markdownDescription": "%setting.frontMatter.copilot.family.markdownDescription%"
},
"frontMatter.copilot.enabled": {
+1 -1
View File
@@ -270,7 +270,7 @@ Example: SEO, website optimization, digital marketing.`
// console.log(models);
const [model] = await lm.selectChatModels({
vendor: 'copilot',
family: Settings.get<string>(SETTING_COPILOT_FAMILY) || 'gpt-4.1'
family: Settings.get<string>(SETTING_COPILOT_FAMILY) || 'gpt-5-mini'
});
if ((!model || !model.sendRequest) && retry <= 5) {