Spaces:
Sleeping
Sleeping
Upload server.js
Browse files
server.js
CHANGED
|
@@ -122,18 +122,18 @@ Rules:
|
|
| 122 |
|
| 123 |
// Scaled-Up Model Pool for High Concurrency (Ensuring maximum availability)
|
| 124 |
const MODELS = [
|
| 125 |
-
"Qwen/Qwen2.5-7B-Instruct",
|
| 126 |
"Qwen/Qwen2.5-1.5B-Instruct",
|
| 127 |
"meta-llama/Llama-3.2-3B-Instruct",
|
| 128 |
-
"mistralai/Mistral-7B-Instruct-v0.3",
|
| 129 |
"google/gemma-2-2b-it",
|
|
|
|
|
|
|
| 130 |
"HuggingFaceH4/zephyr-7b-beta"
|
| 131 |
];
|
| 132 |
|
| 133 |
const DEEPSEEK_MODELS = [
|
| 134 |
-
"deepseek-ai/deepseek-coder-6.7b-instruct",
|
| 135 |
-
"Qwen/Qwen2.5-Coder-7B-Instruct",
|
| 136 |
"Qwen/Qwen2.5-Coder-1.5B-Instruct",
|
|
|
|
|
|
|
| 137 |
"codellama/CodeLlama-7b-hf"
|
| 138 |
];
|
| 139 |
|
|
|
|
| 122 |
|
| 123 |
// Scaled-Up Model Pool for High Concurrency (Ensuring maximum availability)
|
| 124 |
const MODELS = [
|
|
|
|
| 125 |
"Qwen/Qwen2.5-1.5B-Instruct",
|
| 126 |
"meta-llama/Llama-3.2-3B-Instruct",
|
|
|
|
| 127 |
"google/gemma-2-2b-it",
|
| 128 |
+
"Qwen/Qwen2.5-7B-Instruct",
|
| 129 |
+
"mistralai/Mistral-7B-Instruct-v0.3",
|
| 130 |
"HuggingFaceH4/zephyr-7b-beta"
|
| 131 |
];
|
| 132 |
|
| 133 |
const DEEPSEEK_MODELS = [
|
|
|
|
|
|
|
| 134 |
"Qwen/Qwen2.5-Coder-1.5B-Instruct",
|
| 135 |
+
"Qwen/Qwen2.5-Coder-7B-Instruct",
|
| 136 |
+
"deepseek-ai/deepseek-coder-6.7b-instruct",
|
| 137 |
"codellama/CodeLlama-7b-hf"
|
| 138 |
];
|
| 139 |
|