Skip to content

Commit

Permalink
Add default for gpt-3.5-turbo
Browse files Browse the repository at this point in the history
  • Loading branch information
drawers committed May 26, 2024
1 parent 7b61f9d commit 3718201
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ object ChatModels {
private fun getOpenAiModel() =
OpenAiChatModel.builder()
.apiKey(System.getProperty("com.duckduckgo.lint.openai.key"))
.modelName(System.getProperty("com.duckduckgo.lint.openai.model"))
.modelName(System.getProperty("com.duckduckgo.lint.openai.model", "gpt-3.5-turbo"))
.temperature(0.0)
.seed(0)
.build()
Expand Down

0 comments on commit 3718201

Please sign in to comment.