neetnestor
commited on
Commit
•
d6f1f58
1
Parent(s):
4879fd8
Remove Hermes-2-Pro models
Browse files
index.js
CHANGED
@@ -8,11 +8,11 @@ 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);
|
15 |
-
let selectedModel =
|
16 |
|
17 |
availableModels.forEach((modelId) => {
|
18 |
const option = document.createElement("option");
|
|
|
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);
|
15 |
+
let selectedModel = availableModels[0];
|
16 |
|
17 |
availableModels.forEach((modelId) => {
|
18 |
const option = document.createElement("option");
|