THEODOROS commited on
Commit
f463d0a
·
1 Parent(s): 59c9e51

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -230,7 +230,7 @@ creative_slider = gr.inputs.Radio(["Low", "Medium", "High"], default="Low", labe
230
  textbox = gr.inputs.Textbox(placeholder='An apartment with two bedrooms and one bathroom', lines="3",
231
  label="DESCRIBE YOUR IDEAL APARTMENT")
232
  generated = gr.outputs.Image(label='Generated Layout')
233
- layout = gr.outputs.Text(label='Layout Coordinates')
234
 
235
  iface = gr.Interface(fn=prompt_to_layout, inputs=[textbox, creative_slider],
236
  outputs=[generated, layout],
 
230
  textbox = gr.inputs.Textbox(placeholder='An apartment with two bedrooms and one bathroom', lines="3",
231
  label="DESCRIBE YOUR IDEAL APARTMENT")
232
  generated = gr.outputs.Image(label='Generated Layout')
233
+ layout = gr.outputs.Textbox(label='Layout Coordinates')
234
 
235
  iface = gr.Interface(fn=prompt_to_layout, inputs=[textbox, creative_slider],
236
  outputs=[generated, layout],