Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -128,6 +128,8 @@ def make_frontend(
|
|
128 |
|
129 |
allow_flagging = "never"
|
130 |
|
|
|
|
|
131 |
# build a basic browser interface to a Python function
|
132 |
frontend = gr.Interface(
|
133 |
fn=fn, # which Python function are we interacting with?
|
@@ -135,7 +137,7 @@ def make_frontend(
|
|
135 |
# what input widgets does it need? we configure an image widget
|
136 |
inputs=gr.components.Textbox(label="Item Description"),
|
137 |
title="π Text2Image π", # what should we display at the top of the page?
|
138 |
-
theme=
|
139 |
thumbnail=FAVICON, # what should we display when the link is shared, e.g. on social media?
|
140 |
description=__doc__, # what should we display just above the interface?
|
141 |
cache_examples=False, # should we cache those inputs for faster inference? slows down start
|
|
|
128 |
|
129 |
allow_flagging = "never"
|
130 |
|
131 |
+
theme="Nymbo/Alyx_Theme
|
132 |
+
|
133 |
# build a basic browser interface to a Python function
|
134 |
frontend = gr.Interface(
|
135 |
fn=fn, # which Python function are we interacting with?
|
|
|
137 |
# what input widgets does it need? we configure an image widget
|
138 |
inputs=gr.components.Textbox(label="Item Description"),
|
139 |
title="π Text2Image π", # what should we display at the top of the page?
|
140 |
+
theme=theme,
|
141 |
thumbnail=FAVICON, # what should we display when the link is shared, e.g. on social media?
|
142 |
description=__doc__, # what should we display just above the interface?
|
143 |
cache_examples=False, # should we cache those inputs for faster inference? slows down start
|