Spaces:
Running
Running
montyanderson
commited on
Commit
•
ff4fa03
1
Parent(s):
463ab11
`app.py`: add default prompt
Browse files
app.py
CHANGED
@@ -105,7 +105,7 @@ with gr.Blocks(css=css) as demo:
|
|
105 |
with gr.Tab("txt2img"):
|
106 |
with gr.Row():
|
107 |
with gr.Column(scale=6, min_width=600):
|
108 |
-
prompt = gr.Textbox(placeholder="Prompt", show_label=False, lines=3)
|
109 |
negative_prompt = gr.Textbox(placeholder="Negative Prompt", show_label=False, lines=3)
|
110 |
with gr.Column(equal_height=True):
|
111 |
text_button = gr.Button("Generate", variant='primary', elem_id="generate")
|
|
|
105 |
with gr.Tab("txt2img"):
|
106 |
with gr.Row():
|
107 |
with gr.Column(scale=6, min_width=600):
|
108 |
+
prompt = gr.Textbox("puppies in a cloud, 4k", placeholder="Prompt", show_label=False, lines=3)
|
109 |
negative_prompt = gr.Textbox(placeholder="Negative Prompt", show_label=False, lines=3)
|
110 |
with gr.Column(equal_height=True):
|
111 |
text_button = gr.Button("Generate", variant='primary', elem_id="generate")
|