Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -51,7 +51,9 @@ def generate_images(text, num_images=16):
|
|
51 |
def create_demo():
|
52 |
with gr.Blocks() as demo:
|
53 |
text_input = gr.Textbox(label="Prompt")
|
54 |
-
|
|
|
|
|
55 |
submit_button = gr.Button("Get Images")
|
56 |
image_gallery = gr.Gallery(label="Images Matching Prompt", show_label=True, elem_id="gallery",
|
57 |
columns=[4], rows=[4], object_fit="small", height="auto")
|
|
|
51 |
def create_demo():
|
52 |
with gr.Blocks() as demo:
|
53 |
text_input = gr.Textbox(label="Prompt")
|
54 |
+
examples = gr.Examples(examples=["Carnival", "Kids playing", "Mysterious Forest", "Surfer riding waves", "Birds on sunny day"],
|
55 |
+
inputs=[text_input])
|
56 |
+
# radio_group = gr.Radio(choices=["Carnival", , ], label="Predefined Prompts")
|
57 |
submit_button = gr.Button("Get Images")
|
58 |
image_gallery = gr.Gallery(label="Images Matching Prompt", show_label=True, elem_id="gallery",
|
59 |
columns=[4], rows=[4], object_fit="small", height="auto")
|