Skip to content
Open
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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/).

## [Unreleased]

### Changed

- Default OpenAI model for `decompose` / `recompose` generation is now `gpt-5.4`
Comment on lines +6 to +10
(was `gpt-4.1`). Validated as the strong, low-cost default in the staging
repair-loop benchmarks; fully overridable via `--model`. Review/specialist
models and the benchmark baseline are unchanged.

## [1.0.1] - 2026-05-08

### Added
Expand Down
2 changes: 1 addition & 1 deletion cli/pipeline/decompose_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import anthropic

MODEL = "claude-sonnet-4-5"
DEFAULT_OPENAI_MODEL = "gpt-4.1"
DEFAULT_OPENAI_MODEL = "gpt-5.4" # was gpt-4.1; gpt-5* params handled via is_reasoning. Override: --model


def _call_anthropic(client, *, tool, system, user, temperature):
Expand Down
2 changes: 1 addition & 1 deletion cli/pipeline/recompose_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import httpx

MODEL = "claude-sonnet-4-5"
DEFAULT_OPENAI_MODEL = "gpt-4.1"
DEFAULT_OPENAI_MODEL = "gpt-5.4" # was gpt-4.1; gpt-5* params handled via is_reasoning. Override: --model

CODE_TOOL = {
"name": "emit_code",
Expand Down
Loading