Skip to content

Commit 110a520

Browse files
committed
Add Llama 3.2 models to OllamaModel enum
- Include LLAMA3_2 (3B) and LLAMA3_2_1B (1B) variants
1 parent 4c8a6ee commit 110a520

File tree

1 file changed

+10
-0
lines changed
  • models/spring-ai-ollama/src/main/java/org/springframework/ai/ollama/api

1 file changed

+10
-0
lines changed

models/spring-ai-ollama/src/main/java/org/springframework/ai/ollama/api/OllamaModel.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,16 @@ public enum OllamaModel implements ChatModelDescription {
4141
*/
4242
LLAMA3_1("llama3.1"),
4343

44+
/**
45+
* The Llama 3.2 3B language model from Meta.
46+
*/
47+
LLAMA3_2("llama3.2"),
48+
49+
/**
50+
* The Llama 3.2 1B language model from Meta.
51+
*/
52+
LLAMA3_2_1B("llama3.2:1b"),
53+
4454
/**
4555
* The 7B parameters model
4656
*/

0 commit comments

Comments
 (0)