Skip to content

Commit

Permalink
#50 feat: 선택 기능 gpt 모델 변경
Browse files Browse the repository at this point in the history
최대 토큰수 4배 많은 모델로 변경
  • Loading branch information
letskuku committed Aug 18, 2023
1 parent 1b17dda commit b6f5cbe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public ChatCompletionRequest fromEntity(Article article, SelectType selectType)
}

return ChatCompletionRequest.builder()
.model("gpt-3.5-turbo")
.model("gpt-3.5-turbo-16k")
.messages(List.of(chatMessage))
.build();
}
Expand Down

0 comments on commit b6f5cbe

Please sign in to comment.