Spaces:
Running
Running
File size: 864 Bytes
0a632f8 dc944d5 0a632f8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
from utils import get_app
demo = get_app(
models=[
"Qwen/Qwen2.5-Coder-32B-Instruct",
"Qwen/Qwen2.5-72B-Instruct",
"meta-llama/Llama-3.1-70B-Instruct",
"mistralai/Mixtral-8x7B-Instruct-v0.1",
"meta-llama/Llama-3.1-8B-Instruct",
"google/gemma-2-9b-it",
"mistralai/Mistral-7B-v0.1",
"meta-llama/Llama-2-7b-chat-hf",
"meta-llama/Llama-3.2-3B-Instruct",
"meta-llama/Llama-3.2-1B-Instruct",
"Qwen/Qwen2.5-1.5B-Instruct",
"microsoft/Phi-3.5-mini-instruct",
"HuggingFaceTB/SmolLM2-1.7B-Instruct",
"google/gemma-2-2b-it",
"meta-llama/Llama-3.2-3B",
"meta-llama/Llama-3.2-1B",
"openai-community/gpt2",
],
default_model="HuggingFaceTB/SmolLM2-1.7B-Instruct",
src="models",
)
if __name__ == "__main__":
demo.launch()
|