tokeron commited on
Commit
87aaca5
1 Parent(s): a111dfa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -58,7 +58,8 @@ with gr.Blocks() as demo:
58
  # text_input = gr.Textbox(label="Enter prompt")
59
  # model_select = gr.Dropdown(label="Select Model", choices=['sd1', 'sd2'])
60
  # seed_input = gr.Number(label="Enter Seed", value=0) # Default seed set to 0
61
- gallery = gr.Gallery(label="Generated Images", columns=6, rows=2, object_fit="contain", height="auto")
 
62
  # Update the submit function to include the new inputs
63
 
64
 
 
58
  # text_input = gr.Textbox(label="Enter prompt")
59
  # model_select = gr.Dropdown(label="Select Model", choices=['sd1', 'sd2'])
60
  # seed_input = gr.Number(label="Enter Seed", value=0) # Default seed set to 0
61
+ with gr.Column():
62
+ gallery = gr.Gallery(label="Generated Images", columns=6, rows=2, object_fit="contain", height="auto")
63
  # Update the submit function to include the new inputs
64
 
65