Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -432,32 +432,45 @@ metaprompt_explanations = {
|
|
432 |
}
|
433 |
|
434 |
models = [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
435 |
"meta-llama/Llama-3.1-8B-Instruct",
|
436 |
-
"meta-llama/Llama-3.2-1B-Instruct",
|
437 |
"meta-llama/Llama-3.2-3B-Instruct",
|
438 |
-
"
|
439 |
-
"codellama/CodeLlama-34b-Instruct-hf",
|
440 |
-
"google/gemma-1.1-2b-it",
|
441 |
-
"HuggingFaceH4/starchat2-15b-v0.1",
|
442 |
-
"HuggingFaceH4/zephyr-7b-alpha",
|
443 |
-
"HuggingFaceH4/zephyr-7b-beta",
|
444 |
"meta-llama/Llama-2-13b-chat-hf",
|
445 |
"meta-llama/Llama-2-7b-chat-hf",
|
446 |
-
|
447 |
-
|
448 |
-
"meta-llama/Meta-Llama-3-70B-Instruct",
|
449 |
-
"microsoft/DialoGPT-medium",
|
450 |
-
"microsoft/Phi-3-mini-4k-instruct",
|
451 |
"microsoft/Phi-3.5-mini-instruct",
|
452 |
-
"
|
453 |
-
"
|
454 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
455 |
"mistralai/Mixtral-8x7B-Instruct-v0.1",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
456 |
"Ninja5000/DialoGPT-medium-TWEWYJoshua",
|
457 |
"nopeno600321/DialoGPT-medium-Loki",
|
458 |
-
"NousResearch/Hermes-3-Llama-3.1-8B",
|
459 |
-
"NousResearch/Nous-Hermes-2-Mixtral-8x7B-DPO",
|
460 |
-
"Qwen/Qwen2.5-1.5B",
|
461 |
"tiiuae/falcon-7b-instruct"
|
462 |
]
|
463 |
|
|
|
432 |
}
|
433 |
|
434 |
models = [
|
435 |
+
# Qwen models
|
436 |
+
"Qwen/Qwen2.5-72B-Instruct",
|
437 |
+
"Qwen/Qwen2.5-1.5B",
|
438 |
+
|
439 |
+
# Meta-Llama models
|
440 |
+
"meta-llama/Meta-Llama-3-70B-Instruct",
|
441 |
+
"meta-llama/Meta-Llama-3-8B-Instruct",
|
442 |
+
"meta-llama/Llama-3.1-70B-Instruct",
|
443 |
"meta-llama/Llama-3.1-8B-Instruct",
|
|
|
444 |
"meta-llama/Llama-3.2-3B-Instruct",
|
445 |
+
"meta-llama/Llama-3.2-1B-Instruct",
|
|
|
|
|
|
|
|
|
|
|
446 |
"meta-llama/Llama-2-13b-chat-hf",
|
447 |
"meta-llama/Llama-2-7b-chat-hf",
|
448 |
+
|
449 |
+
# Microsoft models
|
|
|
|
|
|
|
450 |
"microsoft/Phi-3.5-mini-instruct",
|
451 |
+
"microsoft/Phi-3-mini-4k-instruct",
|
452 |
+
"microsoft/DialoGPT-medium",
|
453 |
+
|
454 |
+
# HuggingFaceH4 models
|
455 |
+
"HuggingFaceH4/starchat2-15b-v0.1",
|
456 |
+
"HuggingFaceH4/zephyr-7b-beta",
|
457 |
+
"HuggingFaceH4/zephyr-7b-alpha",
|
458 |
+
|
459 |
+
# Mistral models
|
460 |
"mistralai/Mixtral-8x7B-Instruct-v0.1",
|
461 |
+
"mistralai/Mistral-Nemo-Instruct-2407",
|
462 |
+
"mistralai/Mistral-7B-Instruct-v0.3",
|
463 |
+
"mistralai/Mistral-7B-Instruct-v0.2",
|
464 |
+
|
465 |
+
# NousResearch models
|
466 |
+
"NousResearch/Nous-Hermes-2-Mixtral-8x7B-DPO",
|
467 |
+
"NousResearch/Hermes-3-Llama-3.1-8B",
|
468 |
+
|
469 |
+
# Other models
|
470 |
+
"codellama/CodeLlama-34b-Instruct-hf",
|
471 |
+
"google/gemma-1.1-2b-it",
|
472 |
"Ninja5000/DialoGPT-medium-TWEWYJoshua",
|
473 |
"nopeno600321/DialoGPT-medium-Loki",
|
|
|
|
|
|
|
474 |
"tiiuae/falcon-7b-instruct"
|
475 |
]
|
476 |
|