Update app.py
Browse files
app.py
CHANGED
|
@@ -1,6 +1,10 @@
|
|
| 1 |
import gradio as gr
|
| 2 |
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
with gr.Sidebar():
|
| 5 |
gr.Markdown("# Inference Provider")
|
| 6 |
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.")
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
|
| 3 |
+
theme = "abidlabs/dracula_test"
|
| 4 |
+
|
| 5 |
+
|
| 6 |
+
|
| 7 |
+
with gr.Blocks(fill_height=True, theme=theme) as demo:
|
| 8 |
with gr.Sidebar():
|
| 9 |
gr.Markdown("# Inference Provider")
|
| 10 |
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.")
|