NeoPy's picture
Update app.py
bf5a719 verified
raw
history blame contribute delete
492 Bytes
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()