diff --git a/docs/models/quickstart.md b/docs/models/quickstart.md index 91091ec14..281388961 100644 --- a/docs/models/quickstart.md +++ b/docs/models/quickstart.md @@ -93,9 +93,9 @@ There are several ways to set your API keys: Here's a few examples of popular models: ``` - anthropic/claude-sonnet-4-5-20250929 - openai/gpt-5 - openai/gpt-5-mini + anthropic/claude-opus-4-6-20260205 + openai/gpt-5.4 + openai/gpt-5.4-mini gemini/gemini-2.5-pro deepseek/deepseek-chat ``` diff --git a/docs/quickstart.md b/docs/quickstart.md index 3b6542538..0cd30bf35 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -129,6 +129,6 @@ !!! success "Which model to use?" - We recommend using `anthropic/claude-sonnet-4-5-20250929` for most tasks. - For openai models, we recommend using `openai/gpt-5` or `openai/gpt-5-mini`. + We recommend using `anthropic/claude-opus-4-6-20260205` for most tasks. + For openai models, we recommend using `openai/gpt-5.4` or `openai/gpt-5.4-mini`. You can check scores of different models at our [SWE-bench (bash-only)](https://swebench.com) leaderboard. diff --git a/src/minisweagent/run/utilities/config.py b/src/minisweagent/run/utilities/config.py index 2c489041d..c49f0a2d0 100644 --- a/src/minisweagent/run/utilities/config.py +++ b/src/minisweagent/run/utilities/config.py @@ -39,8 +39,8 @@ def _reload_config(): Here's a few popular models and the required API keys: -[bold green]anthropic/claude-sonnet-4-5-20250929[/bold green] ([bold green]ANTHROPIC_API_KEY[/bold green]) -[bold green]openai/gpt-5[/bold green] or [bold green]openai/gpt-5-mini[/bold green] ([bold green]OPENAI_API_KEY[/bold green]) +[bold green]anthropic/claude-opus-4-6-20260205[/bold green] ([bold green]ANTHROPIC_API_KEY[/bold green]) +[bold green]openai/gpt-5.4[/bold green] or [bold green]openai/gpt-5.4-mini[/bold green] ([bold green]OPENAI_API_KEY[/bold green]) [bold green]gemini/gemini-3-pro-preview[/bold green] ([bold green]GEMINI_API_KEY[/bold green]) [bold]Note: Please always include the provider (e.g., "openai/") in the model name.[/bold] @@ -71,7 +71,7 @@ def setup(): """Setup the global config file.""" console.print(_SETUP_HELP.format(global_config_file=global_config_file)) default_model = prompt( - "Enter your default model (e.g., anthropic/claude-sonnet-4-5-20250929): ", + "Enter your default model (e.g., anthropic/claude-opus-4-6-20260205): ", default=os.getenv("MSWEA_MODEL_NAME", ""), ).strip() if default_model: