Skip to content

Commit ef6c643

Browse files
author
Atlas
committed
fix(cli): update model default to gpt-5.4 in mine_once function
- Change default model from moonshotai/kimi-k2.5 to openai/gpt-5.4 - Tests: 1197 pass
1 parent b62e109 commit ef6c643

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/swe_forge/cli/mine.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def mine(
9494
"-m",
9595
help="LLM model for classification",
9696
),
97-
] = "moonshotai/kimi-k2.5",
97+
] = "openai/gpt-5.4",
9898
once: Annotated[
9999
bool,
100100
typer.Option(
@@ -602,7 +602,7 @@ async def _run_complete_mining(
602602
if result:
603603
from pathlib import Path
604604
from swe_forge.export.workspace import export_task_to_workspace
605-
605+
606606
# Export to workspace format
607607
output_dir = Path(output).parent if Path(output).suffix else Path(output)
608608
output_dir.mkdir(parents=True, exist_ok=True)

0 commit comments

Comments
 (0)