Added support for GPT-4 Models
This commit is contained in:
parent
21d67b266f
commit
e35d9a3bed
2 changed files with 14 additions and 1 deletions
|
@ -6,6 +6,10 @@ from urllib import request as http_request
|
|||
|
||||
class Models:
|
||||
'''This class holds available models'''
|
||||
GPT_4 = "gpt-4"
|
||||
GPT_4_0314 = "gpt-4-0314"
|
||||
GPT_4_32K = "gpt-4-32k"
|
||||
GPT_4_32K_0314 = "gpt-4-32k-0314"
|
||||
GPT_35_TURBO = "gpt-3.5-turbo"
|
||||
GPT_35_TURBO_0301 = "gpt-3.5-turbo-0301"
|
||||
|
||||
|
|
Reference in a new issue