Spaces:
				
			
			
	
			
			
					
		Running
		
	
	
	
			
			
	
	
	
	
		
		
					
		Running
		
	File size: 776 Bytes
			
			| e8fb5c0 0a632f8 583f001 33e7a65 0a632f8 33e7a65 dc944d5 e8fb5c0 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 | import os
import hyperbolic_gradio
from utils import get_app
demo = get_app(
    models=[
        "Qwen/Qwen2.5-Coder-32B-Instruct",
        "meta-llama/Llama-3.2-3B-Instruct",
        "meta-llama/Meta-Llama-3.1-8B-Instruct",
        "meta-llama/Meta-Llama-3.1-70B-Instruct",
        "meta-llama/Meta-Llama-3-70B-Instruct",
        "NousResearch/Hermes-3-Llama-3.1-70B",
        "Qwen/Qwen2.5-72B-Instruct",
        "deepseek-ai/DeepSeek-V2.5",
        "meta-llama/Meta-Llama-3.1-405B-Instruct",
        "Qwen/QwQ-32B-Preview",
        "meta-llama/Llama-3.3-70B-Instruct",
    ],
    default_model="meta-llama/Llama-3.3-70B-Instruct",
    src=hyperbolic_gradio.registry,
    accept_token=not os.getenv("HYPERBOLIC_API_KEY"),
)
if __name__ == "__main__":
    demo.launch()
 | 
