Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -228,18 +228,19 @@ with gr.Blocks(css="cake.css") as myface:
|
|
228 |
gr.Textbox(label="", lines=8, interactive=True)
|
229 |
|
230 |
with gr.Box(visible=True) as timo:
|
231 |
-
with gr.
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
with gr.
|
236 |
-
with gr.
|
237 |
-
|
238 |
-
|
239 |
-
with gr.
|
240 |
-
|
241 |
-
|
242 |
-
|
|
|
243 |
with gr.Row():
|
244 |
output1=gr.Image(label=(f"{model_1}"),visible=True)
|
245 |
output2=gr.Image(label=(f"{model_2}"),visible=True)
|
|
|
228 |
gr.Textbox(label="", lines=8, interactive=True)
|
229 |
|
230 |
with gr.Box(visible=True) as timo:
|
231 |
+
with gr.Row():
|
232 |
+
with gr.Column():
|
233 |
+
input_text=gr.Textbox(label="Short Prompt")
|
234 |
+
prompt=gr.Textbox(label="Text to Image",visible=True)
|
235 |
+
with gr.Column():
|
236 |
+
with gr.Row():
|
237 |
+
with gr.Column():
|
238 |
+
see_prompts=gr.Button("Magic Prompt")
|
239 |
+
with gr.Row():
|
240 |
+
with gr.Column():
|
241 |
+
run=gr.Button("Launch")
|
242 |
+
with gr.Column():
|
243 |
+
clear_btn=gr.Button("Clear")
|
244 |
with gr.Row():
|
245 |
output1=gr.Image(label=(f"{model_1}"),visible=True)
|
246 |
output2=gr.Image(label=(f"{model_2}"),visible=True)
|