@@ -79,7 +79,7 @@ def get_config(company):
7979parser .add_argument ('--name' , type = str , default = "Gomoku" ,
8080                    help = "Name of software, your software will be generated in WareHouse/name_org_timestamp" )
8181parser .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' }" )
8383parser .add_argument ('--path' , type = str , default = "" ,
8484                    help = "Your file directory, ChatDev will build upon your software in the Incremental mode" )
8585args  =  parser .parse_args ()
@@ -95,6 +95,8 @@ def get_config(company):
9595            #  'GPT_4_32K': ModelType.GPT_4_32k, 
9696             'GPT_4_TURBO' : ModelType .GPT_4_TURBO ,
9797            #  'GPT_4_TURBO_V': ModelType.GPT_4_TURBO_V 
98+             'GPT_4O' : ModelType .GPT_4O ,
99+             'GPT_4O_MINI' : ModelType .GPT_4O_MINI ,
98100             }
99101if  openai_new_api :
100102    args2type ['GPT_3_5_TURBO' ] =  ModelType .GPT_3_5_TURBO_NEW 
0 commit comments