juancopi81 commited on
Commit
4fe0536
β€’
1 Parent(s): 587bddc

Add launch to colab

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -306,4 +306,7 @@ Despite how impressive being able to turn text into image is, beware to the fact
306
  [![Twitter Follow](https://img.shields.io/twitter/follow/juancopi81?style=social)](https://twitter.com/juancopi81)
307
  ![visitors](https://visitor-badge.glitch.me/badge?page_id=Juancopi81.MultilingualStableDiffusion)
308
  ''')
309
- demo.queue(max_size=25).launch()
 
 
 
 
306
  [![Twitter Follow](https://img.shields.io/twitter/follow/juancopi81?style=social)](https://twitter.com/juancopi81)
307
  ![visitors](https://visitor-badge.glitch.me/badge?page_id=Juancopi81.MultilingualStableDiffusion)
308
  ''')
309
+
310
+ if not is_colab:
311
+ demo.queue(concurrency_count=1)
312
+ demo.launch(debug=is_colab, share=is_colab)