diff --git a/aider/models/model.py b/aider/models/model.py index cbfaab2bf..4ff4ddd9c 100644 --- a/aider/models/model.py +++ b/aider/models/model.py @@ -3,6 +3,7 @@ import math from PIL import Image + class Model: name = None edit_format = None @@ -35,7 +36,7 @@ class Model: @staticmethod def weak_model(): - return Model.create("gpt-3.5-turbo-1106") + return Model.create("gpt-3.5-turbo-0125") @staticmethod def commit_message_models(): @@ -83,7 +84,6 @@ class Model: token_cost = num_tiles * 170 + 85 return token_cost - def get_image_size(self, fname): """ Retrieve the size of an image.