Skip to content

Commit

Permalink
perf: set gpt-3.5-turbo-1106 as default model
Browse files Browse the repository at this point in the history
  • Loading branch information
tisfeng committed Jan 3, 2024
1 parent abfe5f0 commit ecfd487
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Easydict/Feature/Service/OpenAI/EZOpenAIService.m
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ - (instancetype)init {
self.defaultAPIKey = [@"NnZp/jV9prt5empCOJIM8LmzHmFdTiVa4i+mURU8t+uGpT+nDt/JTdf14JglJLEwpXkkSw+uGgiE8n5skqDdjQ==" decryptAES];
#endif
self.defaultEndPoint = [@"gTYTMVQTyMU0ogncqcMNRo/TDhten/V4TqX4IutuGNcYTLtxjgl/aXB/Y1NXAjz2" decryptAES];
self.defaultModel = [self hasPrivateAPIKey] ? @"gpt-3.5-turbo" : @"gemini-pro";
self.defaultModel = [self hasPrivateAPIKey] ? @"gpt-3.5-turbo-1106" : @"gemini-pro";
}
return self;
}
Expand Down

0 comments on commit ecfd487

Please sign in to comment.