tanyarai commited on
Commit
8d0dafd
1 Parent(s): cc2d507

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
+ from gradio_notebook import GradioNotebook
3
+
4
+ AICONFIG_FILE_PATH = "./my_app.aiconfig.json"
5
+
6
+ with gr.Blocks() as demo:
7
+ GradioNotebook()
8
+
9
+ demo.queue().launch()