Commit
·
bde0b73
1
Parent(s):
6987850
Allow Hermes-2 model
Browse files
index.js
CHANGED
|
@@ -8,7 +8,7 @@ const availableModels = webllm.prebuiltAppConfig.model_list
|
|
| 8 |
.filter(
|
| 9 |
(m) =>
|
| 10 |
m.model_id.startsWith("Llama-3") ||
|
| 11 |
-
|
| 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("Hermes-2") ||
|
| 12 |
m.model_id.startsWith("Phi-3")
|
| 13 |
)
|
| 14 |
.map((m) => m.model_id);
|