Spaces:
Running on Zero
Running on Zero
Upload app.py with huggingface_hub
Browse files
app.py
CHANGED
|
@@ -532,7 +532,7 @@ CSS = """
|
|
| 532 |
.dark .gradio-container { color: var(--body-text-color); }
|
| 533 |
"""
|
| 534 |
|
| 535 |
-
with gr.Blocks(title="Fara1.5-9B Computer Use Agent"
|
| 536 |
with gr.Column(elem_id="col-container"):
|
| 537 |
gr.Markdown(
|
| 538 |
"""
|
|
@@ -619,4 +619,4 @@ with gr.Blocks(title="Fara1.5-9B Computer Use Agent", theme=gr.themes.Citrus(),
|
|
| 619 |
)
|
| 620 |
|
| 621 |
if __name__ == "__main__":
|
| 622 |
-
demo.launch(mcp_server=True)
|
|
|
|
| 532 |
.dark .gradio-container { color: var(--body-text-color); }
|
| 533 |
"""
|
| 534 |
|
| 535 |
+
with gr.Blocks(title="Fara1.5-9B Computer Use Agent") as demo:
|
| 536 |
with gr.Column(elem_id="col-container"):
|
| 537 |
gr.Markdown(
|
| 538 |
"""
|
|
|
|
| 619 |
)
|
| 620 |
|
| 621 |
if __name__ == "__main__":
|
| 622 |
+
demo.launch(mcp_server=True, theme=gr.themes.Citrus(), css=CSS)
|