Yntec commited on
Commit
633f735
Β·
verified Β·
1 Parent(s): c89c6a3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -4
app.py CHANGED
@@ -89,13 +89,12 @@ with gr.Blocks() as demo:
89
  </p></div>
90
  """
91
  )
92
-
93
- with gr.Blocks() as demo:
94
  with gr.Tab('πŸ€— Huggingface Diffusion πŸ€—'):
95
  txt_input = gr.Textbox(label='Your prompt:', lines=4)
96
- seed = gr.Slider(label="Use a seed to replicate the same image later", info="Max 3999999999", minimum=0, maximum=MAX_SEED, step=1, value=starting_seed)
97
  gen_button = gr.Button('Generate up to 6 images in up to 3 minutes total', scale=3)
98
- seed_rand = gr.Button("Randomize Seed 🎲", size="sm", variant="secondary", scale=1)
 
 
99
  seed_rand.click(randomize_seed, None, [seed], queue=False)
100
  #stop_button = gr.Button('Stop', variant = 'secondary', interactive = False)
101
 
 
89
  </p></div>
90
  """
91
  )
 
 
92
  with gr.Tab('πŸ€— Huggingface Diffusion πŸ€—'):
93
  txt_input = gr.Textbox(label='Your prompt:', lines=4)
 
94
  gen_button = gr.Button('Generate up to 6 images in up to 3 minutes total', scale=3)
95
+ with gr.Row():
96
+ seed = gr.Slider(label="Use a seed to replicate the same image later", info="Max 3999999999", minimum=0, maximum=MAX_SEED, step=1, value=starting_seed)
97
+ seed_rand = gr.Button("Randomize Seed 🎲", size="sm", variant="secondary", scale=1)
98
  seed_rand.click(randomize_seed, None, [seed], queue=False)
99
  #stop_button = gr.Button('Stop', variant = 'secondary', interactive = False)
100