Spaces:
Running
Running
charliebaby2023
commited on
Commit
•
1c5a522
1
Parent(s):
88e96f6
Update app.py
Browse files
app.py
CHANGED
@@ -62,9 +62,9 @@ def gen_fn(model_str, prompt):
|
|
62 |
|
63 |
def make_me():
|
64 |
with gr.Tab('The Dream'):
|
65 |
-
txt_input = gr.Textbox(label = 'Your prompt:', lines=4, value=kii ).style(container=False,min_width=
|
66 |
-
gen_button = gr.Button('Generate up to 6 images in up to 3 minutes total')
|
67 |
-
stop_button = gr.Button('Stop', variant = 'secondary', interactive = False)
|
68 |
gen_button.click(lambda s: gr.update(interactive = True), None, stop_button)
|
69 |
gr.HTML(
|
70 |
"""
|
|
|
62 |
|
63 |
def make_me():
|
64 |
with gr.Tab('The Dream'):
|
65 |
+
txt_input = gr.Textbox(label = 'Your prompt:', lines=4, value=kii ).style(container=False,min_width=600,min_height=300)
|
66 |
+
gen_button = gr.Button('Generate up to 6 images in up to 3 minutes total').style(min_width=400,min_height=200)
|
67 |
+
stop_button = gr.Button('Stop', variant = 'secondary', interactive = False).style(min_width=400,min_height=200)
|
68 |
gen_button.click(lambda s: gr.update(interactive = True), None, stop_button)
|
69 |
gr.HTML(
|
70 |
"""
|