Skip to content

Commit

Permalink
feat: Set llama3.2 as default model
Browse files Browse the repository at this point in the history
  • Loading branch information
fmueller committed Nov 27, 2024
1 parent 15c7135 commit 6b5aafc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ object OllamaService {
fun chat(message: String): TokenStream
}

var modelName: String = "llama3.1"
var modelName: String = "llama3.2"
set(value) {
if (value != "llama3.1" && value != "llama3.2") {
throw IllegalArgumentException("Invalid model name: $value")
Expand Down

0 comments on commit 6b5aafc

Please sign in to comment.