Spaces:
Runtime error
Runtime error
Commit
·
40d9d44
1
Parent(s):
6bd22a6
Update app.py
Browse files
app.py
CHANGED
@@ -238,8 +238,8 @@ with gr.Blocks(css=css, theme="Base") as demo:
|
|
238 |
with gr.Tab("Image to Image", id='i2i'):
|
239 |
with gr.Row():
|
240 |
with gr.Column(scale=6, min_width=600):
|
241 |
-
i2i_prompt = gr.Textbox(label="Prompt", placeholder="a cute cat, 8k", lines=
|
242 |
-
i2i_negative_prompt = gr.Textbox(label="Negative Prompt", lines=
|
243 |
with gr.Column():
|
244 |
i2i_text_button = gr.Button("Generate", variant='primary', elem_id="generate")
|
245 |
|
|
|
238 |
with gr.Tab("Image to Image", id='i2i'):
|
239 |
with gr.Row():
|
240 |
with gr.Column(scale=6, min_width=600):
|
241 |
+
i2i_prompt = gr.Textbox(label="Prompt", placeholder="a cute cat, 8k", lines=2)
|
242 |
+
i2i_negative_prompt = gr.Textbox(label="Negative Prompt", lines=1, value="text, blurry, fuzziness")
|
243 |
with gr.Column():
|
244 |
i2i_text_button = gr.Button("Generate", variant='primary', elem_id="generate")
|
245 |
|