Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -187,11 +187,12 @@ with gr.Blocks() as demo:
|
|
187 |
btn = gr.Button("Generate")
|
188 |
with gr.Column():
|
189 |
output_image1 = gr.components.Image(label="Your tee shirt")
|
|
|
190 |
output_image2 = gr.components.Image(label="Your tee shirt")
|
191 |
|
192 |
|
193 |
btn.click(getadvertisement,inputs=[textbox], outputs=[output_image1,output_image2])
|
194 |
-
examples = gr.Examples(examples=['anime art of
|
195 |
inputs=[textbox])
|
196 |
|
197 |
|
|
|
187 |
btn = gr.Button("Generate")
|
188 |
with gr.Column():
|
189 |
output_image1 = gr.components.Image(label="Your tee shirt")
|
190 |
+
with gr.Column():
|
191 |
output_image2 = gr.components.Image(label="Your tee shirt")
|
192 |
|
193 |
|
194 |
btn.click(getadvertisement,inputs=[textbox], outputs=[output_image1,output_image2])
|
195 |
+
examples = gr.Examples(examples=['anime art of tokyo','intricate skull concept art','heavy metal band album cover','abstract art of plants',],
|
196 |
inputs=[textbox])
|
197 |
|
198 |
|