Spaces:
Runtime error
Runtime error
Commit
·
a812175
1
Parent(s):
c8faa0b
Update app.py
Browse files
app.py
CHANGED
@@ -52,6 +52,11 @@ with gr.Blocks() as myface:
|
|
52 |
with gr.Row():
|
53 |
prompt=gr.Textbox(label="Prettified Prompt")
|
54 |
run=gr.Button("Launch")
|
|
|
|
|
|
|
|
|
|
|
55 |
|
56 |
with gr.Row():
|
57 |
output1=gr.Image(label="DreamlikeArt PhotoReal 1")
|
@@ -87,4 +92,4 @@ with gr.Blocks() as myface:
|
|
87 |
run.click(send_it8, inputs=[prompt], outputs=[output8])
|
88 |
|
89 |
myface.queue(concurrency_count=8)
|
90 |
-
myface.launch(enable_queue=
|
|
|
52 |
with gr.Row():
|
53 |
prompt=gr.Textbox(label="Prettified Prompt")
|
54 |
run=gr.Button("Launch")
|
55 |
+
|
56 |
+
with gr.Row():
|
57 |
+
gr.Column()
|
58 |
+
with gr.Column():
|
59 |
+
clear_btn=gr.Button("Test")
|
60 |
|
61 |
with gr.Row():
|
62 |
output1=gr.Image(label="DreamlikeArt PhotoReal 1")
|
|
|
92 |
run.click(send_it8, inputs=[prompt], outputs=[output8])
|
93 |
|
94 |
myface.queue(concurrency_count=8)
|
95 |
+
myface.launch(enable_queue=True,inline=True,max_threads=440)
|