Update app.py
Browse files
app.py
CHANGED
@@ -215,10 +215,9 @@ with gr.Blocks(theme=theme, css=css) as app:
|
|
215 |
with gr.Row():
|
216 |
gr.Examples(
|
217 |
examples = examples,
|
218 |
-
|
219 |
)
|
220 |
-
|
221 |
-
|
222 |
# Bind the button to the query function with the added width and height inputs
|
223 |
|
224 |
text_button.click(query, inputs=[text_prompt, negative_prompt, steps, cfg, method, seed, strength, width, height], outputs=image_output)
|
|
|
215 |
with gr.Row():
|
216 |
gr.Examples(
|
217 |
examples = examples,
|
218 |
+
inputs = [text_prompt],
|
219 |
)
|
220 |
+
|
|
|
221 |
# Bind the button to the query function with the added width and height inputs
|
222 |
|
223 |
text_button.click(query, inputs=[text_prompt, negative_prompt, steps, cfg, method, seed, strength, width, height], outputs=image_output)
|