Spaces:
Running
Running
updating featured models, adding DeepSeek-R1
Browse files
app.py
CHANGED
@@ -165,22 +165,30 @@ with demo:
|
|
165 |
|
166 |
models_list = [
|
167 |
"meta-llama/Llama-3.3-70B-Instruct",
|
|
|
|
|
168 |
"meta-llama/Llama-3.2-3B-Instruct",
|
169 |
"meta-llama/Llama-3.2-1B-Instruct",
|
170 |
"meta-llama/Llama-3.1-8B-Instruct",
|
171 |
"NousResearch/Hermes-3-Llama-3.1-8B",
|
172 |
-
"
|
173 |
-
"google/gemma-2-9b-it",
|
174 |
-
"google/gemma-2-2b-it",
|
175 |
"mistralai/Mistral-Nemo-Instruct-2407",
|
176 |
"mistralai/Mixtral-8x7B-Instruct-v0.1",
|
177 |
"mistralai/Mistral-7B-Instruct-v0.3",
|
|
|
178 |
"Qwen/Qwen2.5-72B-Instruct",
|
|
|
|
|
179 |
"Qwen/QwQ-32B-Preview",
|
180 |
-
"
|
181 |
-
"HuggingFaceTB/SmolLM2-1.7B-Instruct",
|
182 |
-
"TinyLlama/TinyLlama-1.1B-Chat-v1.0",
|
183 |
"microsoft/Phi-3.5-mini-instruct",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
184 |
]
|
185 |
print("Models list initialized.")
|
186 |
|
|
|
165 |
|
166 |
models_list = [
|
167 |
"meta-llama/Llama-3.3-70B-Instruct",
|
168 |
+
"meta-llama/Llama-3.1-70B-Instruct",
|
169 |
+
"meta-llama/Llama-3.0-70B-Instruct",
|
170 |
"meta-llama/Llama-3.2-3B-Instruct",
|
171 |
"meta-llama/Llama-3.2-1B-Instruct",
|
172 |
"meta-llama/Llama-3.1-8B-Instruct",
|
173 |
"NousResearch/Hermes-3-Llama-3.1-8B",
|
174 |
+
"NousResearch/Nous-Hermes-2-Mixtral-8x7B-DPO",
|
|
|
|
|
175 |
"mistralai/Mistral-Nemo-Instruct-2407",
|
176 |
"mistralai/Mixtral-8x7B-Instruct-v0.1",
|
177 |
"mistralai/Mistral-7B-Instruct-v0.3",
|
178 |
+
"mistralai/Mistral-7B-Instruct-v0.2",
|
179 |
"Qwen/Qwen2.5-72B-Instruct",
|
180 |
+
"Qwen/Qwen2.5-3B-Instruct",
|
181 |
+
"Qwen/Qwen2.5-0.5B-Instruct",
|
182 |
"Qwen/QwQ-32B-Preview",
|
183 |
+
"Qwen/Qwen2.5-Coder-32B-Instruct",
|
|
|
|
|
184 |
"microsoft/Phi-3.5-mini-instruct",
|
185 |
+
"microsoft/Phi-3-mini-4k-instruct",
|
186 |
+
"deepseek-ai/DeepSeek-R1-Distill-Qwen-32B",
|
187 |
+
"deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B",
|
188 |
+
"HuggingFaceH4/zephyr-7b-beta",
|
189 |
+
"HuggingFaceTB/SmolLM2-360M-Instruct",
|
190 |
+
"tiiuae/falcon-7b-instruct",
|
191 |
+
"01-ai/Yi-1.5-34B-Chat",
|
192 |
]
|
193 |
print("Models list initialized.")
|
194 |
|