SeemG commited on
Commit
609bb88
·
verified ·
1 Parent(s): be8c2fb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
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
- radio_group = gr.Radio(choices=["Carnival", "Mysterious Forest", "Kids playing"], label="Predefined Prompts")
 
 
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")