Update index.js
Browse files
index.js
CHANGED
@@ -13,7 +13,10 @@ const AVAILABLE_MODELS = [
|
|
13 |
{ name: "SmolLM3-3B", id: "HuggingFaceTB/SmolLM3-3B" },
|
14 |
{ name: "GLM-4.1V-9B-Thinking", id: "THUDM/GLM-4.1V-9B-Thinking" },
|
15 |
{ name: "Qwen3-235B-A22B-Instruct-2507", id: "Qwen/Qwen3-235B-A22B-Instruct-2507" },
|
16 |
-
{ name: "Qwen3-Coder-480B-A35B", id: "Qwen/Qwen3-Coder-480B-A35B-Instruct" }
|
|
|
|
|
|
|
17 |
];
|
18 |
|
19 |
const modelSelect = document.getElementById('modelSelect');
|
|
|
13 |
{ name: "SmolLM3-3B", id: "HuggingFaceTB/SmolLM3-3B" },
|
14 |
{ name: "GLM-4.1V-9B-Thinking", id: "THUDM/GLM-4.1V-9B-Thinking" },
|
15 |
{ name: "Qwen3-235B-A22B-Instruct-2507", id: "Qwen/Qwen3-235B-A22B-Instruct-2507" },
|
16 |
+
{ name: "Qwen3-Coder-480B-A35B", id: "Qwen/Qwen3-Coder-480B-A35B-Instruct" },
|
17 |
+
// New providers:
|
18 |
+
{ name: "OpenAI GPT-4", id: "openai/gpt-4" },
|
19 |
+
{ name: "Gemini Pro", id: "gemini/pro" }
|
20 |
];
|
21 |
|
22 |
const modelSelect = document.getElementById('modelSelect');
|