Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -95,7 +95,7 @@ with gr.Blocks(css="style.css") as demo:
|
|
95 |
result = gr.Image(label="Result", show_label=False)
|
96 |
with gr.Accordion("Advanced options", open=False):
|
97 |
with gr.Row():
|
98 |
-
use_negative_prompt = gr.Checkbox(label="Use negative prompt", value=
|
99 |
use_prompt_2 = gr.Checkbox(label="Use prompt 2", value=False)
|
100 |
use_negative_prompt_2 = gr.Checkbox(label="Use negative prompt 2", value=False)
|
101 |
negative_prompt = gr.Text(
|
@@ -103,6 +103,7 @@ with gr.Blocks(css="style.css") as demo:
|
|
103 |
max_lines=1,
|
104 |
placeholder="Enter a negative prompt",
|
105 |
visible=False,
|
|
|
106 |
)
|
107 |
prompt_2 = gr.Text(
|
108 |
label="Prompt 2",
|
|
|
95 |
result = gr.Image(label="Result", show_label=False)
|
96 |
with gr.Accordion("Advanced options", open=False):
|
97 |
with gr.Row():
|
98 |
+
use_negative_prompt = gr.Checkbox(label="Use negative prompt", value=True)
|
99 |
use_prompt_2 = gr.Checkbox(label="Use prompt 2", value=False)
|
100 |
use_negative_prompt_2 = gr.Checkbox(label="Use negative prompt 2", value=False)
|
101 |
negative_prompt = gr.Text(
|
|
|
103 |
max_lines=1,
|
104 |
placeholder="Enter a negative prompt",
|
105 |
visible=False,
|
106 |
+
value="(deformed eyes, nose, ears, nose), bad anatomy, ugly",
|
107 |
)
|
108 |
prompt_2 = gr.Text(
|
109 |
label="Prompt 2",
|