abidlabs HF Staff commited on
Commit
0a59328
·
verified ·
1 Parent(s): c371803

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ import nest_asyncio
3
+ nest_asyncio.apply()
4
+
5
+ with gr.Blocks() as demo:
6
+ gr.Markdown("### Ok")
7
+
8
+ if __name__ == "__main__":
9
+ demo.launch()