chore: update default model to claude-sonnet-4-6

This commit is contained in:
2026-04-15 14:32:23 -04:00
parent 7c4f5a9189
commit b9e0273d57
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -164,7 +164,7 @@ function extractAnthropicDelta(data: string): string | null {
export function createProvider(config: vscode.WorkspaceConfiguration): AIProvider {
const provider = config.get<string>("provider", "anthropic")
const apiKey = config.get<string>("apiKey", "")
const model = config.get<string>("model", "claude-haiku-4-5-20251001")
const model = config.get<string>("model", "claude-sonnet-4-6")
const customBaseUrl = config.get<string>("baseUrl", "")
switch (provider) {