model upgrade

This commit is contained in:
Harivansh Rathi 2026-03-09 16:37:39 -07:00
parent 92c3bcf9f9
commit a1c66c805a
5 changed files with 12 additions and 9 deletions

View file

@ -318,7 +318,7 @@ const authStorage = AuthStorage.create();
const modelRegistry = new ModelRegistry(authStorage);
// Find specific built-in model (doesn't check if API key exists)
const opus = getModel("anthropic", "claude-opus-4-5");
const opus = getModel("anthropic", "claude-opus-4-6");
if (!opus) throw new Error("Model not found");
// Find any model by provider/id, including custom models from models.json
@ -841,7 +841,7 @@ const statusTool: ToolDefinition = {
}),
};
const model = getModel("anthropic", "claude-opus-4-5");
const model = getModel("anthropic", "claude-opus-4-6");
if (!model) throw new Error("Model not found");
// In-memory settings with overrides