@@ -79,7 +79,7 @@ def get_config(company):
79
79
parser .add_argument ('--name' , type = str , default = "Gomoku" ,
80
80
help = "Name of software, your software will be generated in WareHouse/name_org_timestamp" )
81
81
parser .add_argument ('--model' , type = str , default = "GPT_3_5_TURBO" ,
82
- help = "GPT Model, choose from {'GPT_3_5_TURBO', 'GPT_4', 'GPT_4_TURBO'}" )
82
+ help = "GPT Model, choose from {'GPT_3_5_TURBO', 'GPT_4', 'GPT_4_TURBO', 'GPT_4O', 'GPT_4O_MINI' }" )
83
83
parser .add_argument ('--path' , type = str , default = "" ,
84
84
help = "Your file directory, ChatDev will build upon your software in the Incremental mode" )
85
85
args = parser .parse_args ()
@@ -95,6 +95,8 @@ def get_config(company):
95
95
# 'GPT_4_32K': ModelType.GPT_4_32k,
96
96
'GPT_4_TURBO' : ModelType .GPT_4_TURBO ,
97
97
# 'GPT_4_TURBO_V': ModelType.GPT_4_TURBO_V
98
+ 'GPT_4O' : ModelType .GPT_4O ,
99
+ 'GPT_4O_MINI' : ModelType .GPT_4O_MINI ,
98
100
}
99
101
if openai_new_api :
100
102
args2type ['GPT_3_5_TURBO' ] = ModelType .GPT_3_5_TURBO_NEW
0 commit comments