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 scripts/generate_fixtures.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
_FIXTURES_DIR = _TEMPLATES_DIR / "fixtures"
_SUMMARIES_FILE = _TEMPLATES_DIR / "summaries.json"

_DEFAULT_MODEL = "claude-haiku-4-5-20251001"
_DEFAULT_MODEL = "claude-haiku-4-5"
_MAX_TOKENS = 2000

_SYSTEM_PROMPT = """\
Expand Down
2 changes: 1 addition & 1 deletion scripts/polish_summaries.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
_SUMMARIES_PATH_FILE = _TEMPLATES_DIR / "summaries_by_path.json"
_DIFF_HINTS_FILE = _REPO_ROOT / "scripts" / "differentiation_hints.yaml"

_DEFAULT_MODEL = "claude-haiku-4-5-20251001"
_DEFAULT_MODEL = "claude-haiku-4-5"
_MAX_TOKENS = 400
_BODY_CHAR_LIMIT = 2500

Expand Down
4 changes: 2 additions & 2 deletions scripts/repolish_low_p1.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
uv run python scripts/repolish_low_p1.py --dry-run

# Pass a cheaper model through to polish
uv run python scripts/repolish_low_p1.py --model claude-haiku-4-5-20251001
uv run python scripts/repolish_low_p1.py --model claude-haiku-4-5

Requires ``attune_rag``, ``pyyaml``, and the ``anthropic``
SDK (only for the polish phase). ``ANTHROPIC_API_KEY``
Expand Down Expand Up @@ -235,7 +235,7 @@ def main(argv: list[str] | None = None) -> int:
)
parser.add_argument(
"--model",
default="claude-haiku-4-5-20251001",
default="claude-haiku-4-5",
help="Passed through to polish_summaries.py.",
)
parser.add_argument(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ SDK agent MODEL_CONFIG uses stale model names

## Root Cause

The `MODEL_CONFIG` dict in `agents/release/release_models.py` references `claude-3-5-haiku-latest` which returns 404. The current Haiku model ID is `claude-haiku-4-5-20251001`. Check model IDs against the Anthropic API when tier escalation fails at CHEAP.
The `MODEL_CONFIG` dict in `agents/release/release_models.py` references `claude-3-5-haiku-latest` which returns 404. The current Haiku model ID is `claude-haiku-4-5`. Check model IDs against the Anthropic API when tier escalation fails at CHEAP.

## Resolution

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ source: .claude/CLAUDE.md

## Answer

The `MODEL_CONFIG` dict in `agents/release/release_models.py` references `claude-3-5-haiku-latest` which returns 404. The current Haiku model ID is `claude-haiku-4-5-20251001`.
The `MODEL_CONFIG` dict in `agents/release/release_models.py` references `claude-3-5-haiku-latest` which returns 404. The current Haiku model ID is `claude-haiku-4-5`.

**How to fix:**
- Check model IDs against the Anthropic API when tier escalation fails at CHEAP
Expand Down
Loading