Spaces:
Running on Zero
Running on Zero
Upload app.py with huggingface_hub
Browse files
app.py
CHANGED
|
@@ -182,7 +182,7 @@ CSS = """
|
|
| 182 |
.dark .gradio-container { color: var(--body-text-color); }
|
| 183 |
"""
|
| 184 |
|
| 185 |
-
with gr.Blocks(
|
| 186 |
gr.Markdown(
|
| 187 |
"""
|
| 188 |
# 🪨 Grug-9B Vision-Language Demo
|
|
@@ -216,7 +216,6 @@ with gr.Blocks(theme=gr.themes.Citrus(), css=CSS) as demo:
|
|
| 216 |
label="Response",
|
| 217 |
lines=16,
|
| 218 |
max_lines=30,
|
| 219 |
-
show_copy_button=True,
|
| 220 |
)
|
| 221 |
|
| 222 |
with gr.Accordion("Advanced settings", open=False):
|
|
@@ -253,4 +252,4 @@ with gr.Blocks(theme=gr.themes.Citrus(), css=CSS) as demo:
|
|
| 253 |
)
|
| 254 |
|
| 255 |
if __name__ == "__main__":
|
| 256 |
-
demo.launch(mcp_server=True)
|
|
|
|
| 182 |
.dark .gradio-container { color: var(--body-text-color); }
|
| 183 |
"""
|
| 184 |
|
| 185 |
+
with gr.Blocks() as demo:
|
| 186 |
gr.Markdown(
|
| 187 |
"""
|
| 188 |
# 🪨 Grug-9B Vision-Language Demo
|
|
|
|
| 216 |
label="Response",
|
| 217 |
lines=16,
|
| 218 |
max_lines=30,
|
|
|
|
| 219 |
)
|
| 220 |
|
| 221 |
with gr.Accordion("Advanced settings", open=False):
|
|
|
|
| 252 |
)
|
| 253 |
|
| 254 |
if __name__ == "__main__":
|
| 255 |
+
demo.launch(mcp_server=True, theme=gr.themes.Citrus(), css=CSS)
|