fix: Add llama-3.2-1b-instruct to NVIDIA fine-tuned model list

This commit is contained in:
Jash Gulabrai 2025-04-16 17:19:50 -04:00
parent b5a9ef4c6d
commit ccd90b2fa0

View file

@ -16,7 +16,11 @@ _MODEL_ENTRIES = [
build_hf_repo_model_entry( build_hf_repo_model_entry(
"meta/llama-3.1-8b-instruct", "meta/llama-3.1-8b-instruct",
CoreModelId.llama3_1_8b_instruct.value, CoreModelId.llama3_1_8b_instruct.value,
) ),
build_hf_repo_model_entry(
"meta/llama-3.2-1b-instruct",
CoreModelId.llama3_2_1b_instruct.value,
),
] ]