Add Llama 3.2 models to OllamaModel enum

- Include LLAMA3_2 (3B) and LLAMA3_2_1B (1B) variants
This commit is contained in:
Christian Tzolov
2024-09-29 15:53:24 +02:00
parent 4c8a6ee8b0
commit 110a520a40

View File

@@ -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
*/