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 deployer/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def _load_dotenv() -> None:
"provider": "anthropic",
"base_url": os.environ.get("MODEL_BASE_URL", ""),
"api_key": os.environ.get("MODEL_API_KEY", ""),
"model_name": os.environ.get("MODEL_NAME", "claude-opus-4-6"),
"model_name": os.environ.get("MODEL_NAME", "claude-opus-4-7"),
},
"brave": {
"api_key": os.environ.get("BRAVE_API_KEY", ""),
Expand Down
2 changes: 1 addition & 1 deletion deployer/windows_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -1553,7 +1553,7 @@ def write_config(self) -> bool:

base_url = self.cfg.get("model.base_url", "")
api_key = self.cfg.get("model.api_key", "")
model_name = self.cfg.get("model.model_name", "claude-opus-4-6")
model_name = self.cfg.get("model.model_name", "claude-opus-4-7")
port = self.cfg.get("gateway.port", 18789)
bind = self.cfg.get("gateway.bind", "loopback")

Expand Down
3 changes: 1 addition & 2 deletions desktop/renderer/src/views/SetupWizard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -218,8 +218,7 @@ async function saveAndFinish() {

const apiMapping = resolveApiValue(form.apiFormat);
const modelId =
form.modelName.trim() ||
(form.apiFormat === "anthropic" ? "claude-sonnet-4-20250514" : "gpt-4o");
form.modelName.trim() || (form.apiFormat === "anthropic" ? "claude-sonnet-4-6" : "gpt-4o");
const providerId = resolveProviderId(form.apiFormat);
const modelRef = `${providerId}/${modelId}`;
const reasoningEffort = normalizeReasoningEffort(form.reasoningEffort);
Expand Down
Loading