Compare commits

..

No commits in common. "068ba7b6e5290257326d1989fe9ac1a97feec408" and "daf5cad807417cb65735de31cdec23dcfa612bbd" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View file

@ -96,7 +96,7 @@ class ChatGpt2 : AbstractModule() {
try {
val model = OpenAiChatModel.builder()
.apiKey(apiKey)
.modelName(OpenAiChatModelName.GPT_4)
.modelName(OpenAiChatModelName.GPT_4_O)
.maxTokens(maxTokens)
.build()

View file

@ -98,7 +98,7 @@ class Gemini2 : AbstractModule() {
try {
val gemini = GoogleAiGeminiChatModel.builder()
.apiKey(apiKey)
.modelName("gemini-2.0-flash")
.modelName("gemini-1.5-flash")
.maxOutputTokens(maxTokens)
.build()