roughed in func coder

This commit is contained in:
Paul Gauthier 2023-06-21 12:16:51 -07:00
parent 75e84017b3
commit 3465bd57d1
5 changed files with 130 additions and 3 deletions

View file

@ -36,6 +36,9 @@ class Model:
def is_gpt35(self):
return self.name.startswith("gpt-3.5-turbo")
def __str__(self):
return self.name
GPT4 = Model("gpt-4", 8)
GPT35 = Model("gpt-3.5-turbo")