diff --git a/HISTORY.md b/HISTORY.md index e426c1973..2994cf475 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -5,6 +5,7 @@ - New `/web ` command which scrapes the url, turns it into fairly clean markdown and adds it to the chat. - Updated all OpenAI model names, pricing info - Default GPT 3.5 model is now `gpt-3.5-turbo-0125`. +- Bugfix to the `!` alias for `/run`. ### v0.23.0 diff --git a/aider/models/model.py b/aider/models/model.py index 4ff4ddd9c..c1b23222b 100644 --- a/aider/models/model.py +++ b/aider/models/model.py @@ -32,7 +32,7 @@ class Model: @staticmethod def strong_model(): - return Model.create("gpt-4") + return Model.create("gpt-4-0613") @staticmethod def weak_model():