Spaces:
Sleeping
Sleeping
File size: 492 Bytes
9e75add bf5a719 9e75add |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import gradio as gr
theme = "abidlabs/dracula_test"
with gr.Blocks(fill_height=True, theme=theme) as demo:
with gr.Sidebar():
gr.Markdown("# Inference Provider")
gr.Markdown("This Space showcases the Qwen/Qwen2.5-7B-Instruct model, served by the together API. Sign in with your Hugging Face account to use this API.")
button = gr.LoginButton("Sign in")
gr.load("models/Qwen/Qwen2.5-7B-Instruct", accept_token=button, provider="together")
demo.launch() |