tombetthauser commited on
Commit
ef5a116
Β·
1 Parent(s): 2147584

Repeat attempt redeploy after crash with minor float to int syntax switch

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -23,6 +23,7 @@
23
  # attempt redeploy after crash 3
24
  # attempt redeploy after crash 4
25
  # attempt redeploy after crash 5
 
26
 
27
 
28
  # ----- General Setup -----------------------------------------------------------------
@@ -446,7 +447,7 @@ with gr.Blocks(css=".gradio-container {max-width: 650px}") as artbot_1:
446
  output = gr.Image(elem_id="output-image")
447
  output_text = gr.Text(elem_id="output-text")
448
  # go_button.click(fn=simple_image_prompt, inputs=[prompt, dropdown, size_dropdown], outputs=[output, output_text])
449
- go_button.click(fn=image_prompt, inputs=[prompt, 7.5, 30, seed, 768, 768, ""], outputs=[output, output_text])
450
 
451
 
452
 
 
23
  # attempt redeploy after crash 3
24
  # attempt redeploy after crash 4
25
  # attempt redeploy after crash 5
26
+ # attempt redeploy after crash 6
27
 
28
 
29
  # ----- General Setup -----------------------------------------------------------------
 
447
  output = gr.Image(elem_id="output-image")
448
  output_text = gr.Text(elem_id="output-text")
449
  # go_button.click(fn=simple_image_prompt, inputs=[prompt, dropdown, size_dropdown], outputs=[output, output_text])
450
+ go_button.click(fn=image_prompt, inputs=[prompt, 7, 30, seed, 768, 768, ""], outputs=[output, output_text])
451
 
452
 
453