Commit
·
df2ca54
1
Parent(s):
66f35c4
Add Llama-3.1 and Hermes-3 models
Browse files
index.js
CHANGED
|
@@ -8,7 +8,9 @@ const availableModels = webllm.prebuiltAppConfig.model_list
|
|
| 8 |
.filter(
|
| 9 |
(m) =>
|
| 10 |
m.model_id.startsWith("Llama-3") ||
|
|
|
|
| 11 |
m.model_id.startsWith("Hermes-2") ||
|
|
|
|
| 12 |
m.model_id.startsWith("Phi-3")
|
| 13 |
)
|
| 14 |
.map((m) => m.model_id);
|
|
|
|
| 8 |
.filter(
|
| 9 |
(m) =>
|
| 10 |
m.model_id.startsWith("Llama-3") ||
|
| 11 |
+
m.model_id.startsWith("Llama-3.1") ||
|
| 12 |
m.model_id.startsWith("Hermes-2") ||
|
| 13 |
+
m.model_id.startsWith("Hermes-3") ||
|
| 14 |
m.model_id.startsWith("Phi-3")
|
| 15 |
)
|
| 16 |
.map((m) => m.model_id);
|