BBongiovanni commited on
Commit
6866a7c
1 Parent(s): d0cf105

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import gradio as gr
3
+
4
+ with gr.Blocks() as demo:
5
+ gr.load("BBongiovanni/jiggler", api_key=os.environ.get('hf_space_api_key', None), src="spaces")
6
+
7
+ demo.queue(concurrency_count=10, max_size=20)
8
+ demo.launch()