Skip to content
Merged
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 package.json
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@
"gpt-3.5-turbo-0613",
"→ Model Name Text"
],
"default": "gpt-4o",
"default": "gpt-4.1",
Copy link

Copilot AI May 30, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider updating relevant documentation or CHANGELOG entries to reflect the new default model from gpt-4o to gpt-4.1, so users are aware of this change.

Copilot uses AI. Check for mistakes.
"markdownDescription": "%config.options.model.description%"
},
"markdown.copilot.options.modelNameText": {
Expand Down
2 changes: 1 addition & 1 deletion src/test/extension.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ suite('Extension Test Suite', () => {
const configuration = vscode.workspace.getConfiguration();
assert.strictEqual(0.5, configuration.get<number>("markdown.copilot.context.inactiveOpacity"));
assert.strictEqual("", configuration.get<string>("markdown.copilot.backend.apiKey"));
assert.strictEqual("gpt-4o", configuration.get<string>("markdown.copilot.options.model"));
assert.strictEqual("gpt-4.1", configuration.get<string>("markdown.copilot.options.model"));
assert.strictEqual(0.1, configuration.get<number>("markdown.copilot.options.temperature"));
});

Expand Down