Spaces:
Running on Zero
Running on Zero
Upload app.py with huggingface_hub
Browse files
app.py
CHANGED
|
@@ -164,7 +164,7 @@ CSS = """
|
|
| 164 |
.dark .gradio-container { color: var(--body-text-color); }
|
| 165 |
"""
|
| 166 |
|
| 167 |
-
with gr.Blocks(
|
| 168 |
gr.Markdown(
|
| 169 |
"""
|
| 170 |
# UniAR: Unified Multimodal Autoregressive Modeling
|
|
@@ -292,4 +292,4 @@ with gr.Blocks(theme=gr.themes.Citrus(), css=CSS) as demo:
|
|
| 292 |
|
| 293 |
|
| 294 |
if __name__ == "__main__":
|
| 295 |
-
demo.launch(mcp_server=True)
|
|
|
|
| 164 |
.dark .gradio-container { color: var(--body-text-color); }
|
| 165 |
"""
|
| 166 |
|
| 167 |
+
with gr.Blocks(css=CSS) as demo:
|
| 168 |
gr.Markdown(
|
| 169 |
"""
|
| 170 |
# UniAR: Unified Multimodal Autoregressive Modeling
|
|
|
|
| 292 |
|
| 293 |
|
| 294 |
if __name__ == "__main__":
|
| 295 |
+
demo.launch(mcp_server=True, theme=gr.themes.Citrus())
|