Nymbo commited on
Commit
28eb7bc
Β·
verified Β·
1 Parent(s): 3c472e5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
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="Nymbo/Alyx_Theme", # Input theme here.
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