rholinshead commited on
Commit
072f35d
1 Parent(s): ec282ed

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from gradio_notebook import GradioNotebook
3
+
4
+ with gr.Blocks() as demo:
5
+ GradioNotebook()
6
+
7
+ demo.queue().launch()