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 src/draft/steps/implement_spec/_live_status.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from pathlib import Path

INTERVAL = 20
MODEL = "claude-3-5-haiku-latest"
MODEL = "haiku"
TAIL_BYTES = 4096
MIN_BYTES = 200
MAX_CHARS = 30
Expand Down
2 changes: 1 addition & 1 deletion src/draft/steps/open_pr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def run(self, ctx, engine, lifecycle, step_metrics):
"--permission-mode",
"acceptEdits",
"--model",
"claude-3-5-haiku-latest",
"haiku",
],
timeout=cfg["timeout"],
)
Expand Down
2 changes: 1 addition & 1 deletion tests/draft/test_live_status.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def test_tick_file_grows_calls_run_llm(tmp_path):
s._tick()
call_kwargs = engine.run_llm.call_args[1]
assert call_kwargs["log_path"] is None
assert call_kwargs["extra_args"] == ["--model", "claude-3-5-haiku-latest"]
assert call_kwargs["extra_args"] == ["--model", "haiku"]
assert call_kwargs["allowed_tools"] == []
assert call_kwargs["timeout"] == 10
assert "x" * 10 in call_kwargs["prompt"]
Expand Down
Loading