Skip to content

Commit

Permalink
[Model] Add Hermes-3-Llama-3.1-8B (#558)
Browse files Browse the repository at this point in the history
Add Hermes-3-Llama-3.1-8B q4f32_1 and q4f16_1 to prebuilt model list.
  • Loading branch information
AMKCode committed Sep 13, 2024
1 parent 1fe4fc6 commit 429e719
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,8 @@ export const functionCallingModelIds = [
"Hermes-2-Pro-Llama-3-8B-q4f16_1-MLC",
"Hermes-2-Pro-Llama-3-8B-q4f32_1-MLC",
"Hermes-2-Pro-Mistral-7B-q4f16_1-MLC",
"Hermes-3-Llama-3.1-8B-q4f32_1-MLC",
"Hermes-3-Llama-3.1-8B-q4f16_1-MLC",
];

/**
Expand Down Expand Up @@ -415,6 +417,32 @@ export const prebuiltAppConfig: AppConfig = {
context_window_size: 4096,
},
},
{
model: "https://huggingface.co/mlc-ai/Hermes-3-Llama-3.1-8B-q4f32_1-MLC",
model_id: "Hermes-3-Llama-3.1-8B-q4f32_1-MLC",
model_lib:
modelLibURLPrefix +
modelVersion +
"/Llama-3_1-8B-Instruct-q4f32_1-ctx4k_cs1k-webgpu.wasm",
vram_required_MB: 5779.27,
low_resource_required: false,
overrides: {
context_window_size: 4096,
},
},
{
model: "https://huggingface.co/mlc-ai/Hermes-3-Llama-3.1-8B-q4f16_1-MLC",
model_id: "Hermes-3-Llama-3.1-8B-q4f16_1-MLC",
model_lib:
modelLibURLPrefix +
modelVersion +
"/Llama-3_1-8B-Instruct-q4f16_1-ctx4k_cs1k-webgpu.wasm",
vram_required_MB: 4876.13,
low_resource_required: false,
overrides: {
context_window_size: 4096,
},
},
{
model:
"https://huggingface.co/mlc-ai/Hermes-2-Pro-Mistral-7B-q4f16_1-MLC",
Expand Down

0 comments on commit 429e719

Please sign in to comment.