abidlabs HF Staff commited on
Commit
5fc6e77
·
verified ·
1 Parent(s): 9ff8ab4

Upload app.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +10 -0
app.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from flow import flow
3
+
4
+ with gr.Blocks() as app:
5
+ for component in flow.inputs:
6
+ component.interactive = True
7
+ component.render()
8
+
9
+ if __name__ == "__main__":
10
+ app.launch()