Skip to content

Commit

Permalink
Add Llama 3.2 models to OllamaModel enum
Browse files Browse the repository at this point in the history
 - Include LLAMA3_2 (3B) and LLAMA3_2_1B (1B) variants
  • Loading branch information
tzolov committed Sep 29, 2024
1 parent 4c8a6ee commit 110a520
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,16 @@ public enum OllamaModel implements ChatModelDescription {
*/
LLAMA3_1("llama3.1"),

/**
* The Llama 3.2 3B language model from Meta.
*/
LLAMA3_2("llama3.2"),

/**
* The Llama 3.2 1B language model from Meta.
*/
LLAMA3_2_1B("llama3.2:1b"),

/**
* The 7B parameters model
*/
Expand Down

0 comments on commit 110a520

Please sign in to comment.