Use gpt-3.5-turbo-0125 for commit messages

This commit is contained in:
Paul Gauthier 2024-02-10 07:32:26 -08:00
parent 6ddfc894e7
commit d376767ca3

View file

@ -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.