Commit ·
fe85057
1
Parent(s): 8be668b
first complete version
Browse files
app.py
CHANGED
|
@@ -698,7 +698,7 @@ button.add-agent-btn:hover {
|
|
| 698 |
# ---------------------------------------------------------------------------
|
| 699 |
|
| 700 |
def create_ui():
|
| 701 |
-
with gr.Blocks() as app:
|
| 702 |
|
| 703 |
# Load Inter font via a <link> tag — @import is forbidden in Gradio 6
|
| 704 |
# Constructable Stylesheets and would break all event listeners.
|
|
@@ -1679,4 +1679,4 @@ def create_ui():
|
|
| 1679 |
|
| 1680 |
if __name__ == "__main__":
|
| 1681 |
app = create_ui()
|
| 1682 |
-
app.launch(
|
|
|
|
| 698 |
# ---------------------------------------------------------------------------
|
| 699 |
|
| 700 |
def create_ui():
|
| 701 |
+
with gr.Blocks(theme=gr.themes.Soft(), css=APP_CSS) as app:
|
| 702 |
|
| 703 |
# Load Inter font via a <link> tag — @import is forbidden in Gradio 6
|
| 704 |
# Constructable Stylesheets and would break all event listeners.
|
|
|
|
| 1679 |
|
| 1680 |
if __name__ == "__main__":
|
| 1681 |
app = create_ui()
|
| 1682 |
+
app.launch()
|