Update app.py
Browse files
app.py
CHANGED
|
@@ -313,17 +313,17 @@ with gr.Blocks() as app:
|
|
| 313 |
prompt_sky=gr.Textbox(label="Background",value="beautiful landscape, real, 8k")
|
| 314 |
btn_sky=gr.Button("Make")
|
| 315 |
out_im_sky=gr.Image(type='filepath')
|
| 316 |
-
out_sky_url=gr.Textbox(visible=
|
| 317 |
with gr.Column():
|
| 318 |
prompt_star=gr.Textbox(label="Star",value="Colorful Star, blank background")
|
| 319 |
btn_star=gr.Button("Make")
|
| 320 |
out_im_star=gr.Image(type='filepath')
|
| 321 |
-
out_star_url=gr.Textbox(visible=
|
| 322 |
with gr.Column():
|
| 323 |
prompt_enemy=gr.Textbox(label="Enemy",value="Ball on fire, blank background")
|
| 324 |
btn_enemy=gr.Button("Make")
|
| 325 |
out_im_enemy=gr.Image(type='filepath')
|
| 326 |
-
out_enemy_url=gr.Textbox(visible=
|
| 327 |
gr.Column()
|
| 328 |
gr.Column()
|
| 329 |
|
|
|
|
| 313 |
prompt_sky=gr.Textbox(label="Background",value="beautiful landscape, real, 8k")
|
| 314 |
btn_sky=gr.Button("Make")
|
| 315 |
out_im_sky=gr.Image(type='filepath')
|
| 316 |
+
out_sky_url=gr.Textbox(visible=False)
|
| 317 |
with gr.Column():
|
| 318 |
prompt_star=gr.Textbox(label="Star",value="Colorful Star, blank background")
|
| 319 |
btn_star=gr.Button("Make")
|
| 320 |
out_im_star=gr.Image(type='filepath')
|
| 321 |
+
out_star_url=gr.Textbox(visible=False)
|
| 322 |
with gr.Column():
|
| 323 |
prompt_enemy=gr.Textbox(label="Enemy",value="Ball on fire, blank background")
|
| 324 |
btn_enemy=gr.Button("Make")
|
| 325 |
out_im_enemy=gr.Image(type='filepath')
|
| 326 |
+
out_enemy_url=gr.Textbox(visible=False)
|
| 327 |
gr.Column()
|
| 328 |
gr.Column()
|
| 329 |
|