mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-08-07 09:23:00 +02:00
fix: update release date in CHANGELOG and change default copilot model to gpt-5-mini
This commit is contained in:
+1
-1
@@ -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
@@ -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": {
|
||||
|
||||
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user