Chore: Support llama3.2.

This commit is contained in:
marko1616
2024-09-25 16:08:44 -04:00
parent 46e2c1ea9f
commit 885a0b77ab
3 changed files with 21 additions and 2 deletions

View File

@@ -798,6 +798,25 @@ register_model_group(
)
register_model_group(
models={
"LLaMA3.2-1B": {
DownloadSource.DEFAULT: "meta-llama/Llama-3.2-1B",
},
"LLaMA3.2-3B": {
DownloadSource.DEFAULT: "meta-llama/Llama-3.2-3B",
},
"LLaMA3.2-1B-Instruct": {
DownloadSource.DEFAULT: "meta-llama/Llama-3.2-1B-Instruct",
},
"LLaMA3.2-3B-Instruct": {
DownloadSource.DEFAULT: "meta-llama/Llama-3.2-3B-Instruct",
},
},
template="llama3",
)
register_model_group(
models={
"LLaVA1.5-7B-Chat": {