Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -69,6 +69,7 @@ with gr.Blocks(css=css) as demo:
|
|
69 |
gr.Markdown(" # Rainbow Media Anime Generator")
|
70 |
gr.Markdown(' ### <a href="https://example.com" target="_blank" class="button-link">Try a more realistic model</a>')
|
71 |
|
|
|
72 |
|
73 |
prompt = gr.Text(
|
74 |
label="Prompt",
|
@@ -81,12 +82,10 @@ with gr.Blocks(css=css) as demo:
|
|
81 |
with gr.Row():
|
82 |
run_button = gr.Button("Run", scale=0, variant="primary")
|
83 |
|
84 |
-
result = gr.Image(label="Result", show_label=False)
|
85 |
-
|
86 |
with gr.Accordion("Advanced Settings", open=False):
|
87 |
negative_prompt = gr.Text(
|
88 |
label="Negative prompt",
|
89 |
-
|
90 |
placeholder="Enter a negative prompt",
|
91 |
visible=True, # Show negative prompt by default
|
92 |
)
|
|
|
69 |
gr.Markdown(" # Rainbow Media Anime Generator")
|
70 |
gr.Markdown(' ### <a href="https://example.com" target="_blank" class="button-link">Try a more realistic model</a>')
|
71 |
|
72 |
+
result = gr.Image(label="Result", show_label=False)
|
73 |
|
74 |
prompt = gr.Text(
|
75 |
label="Prompt",
|
|
|
82 |
with gr.Row():
|
83 |
run_button = gr.Button("Run", scale=0, variant="primary")
|
84 |
|
|
|
|
|
85 |
with gr.Accordion("Advanced Settings", open=False):
|
86 |
negative_prompt = gr.Text(
|
87 |
label="Negative prompt",
|
88 |
+
lines=3,
|
89 |
placeholder="Enter a negative prompt",
|
90 |
visible=True, # Show negative prompt by default
|
91 |
)
|