Ryan Holinshead commited on
Commit
864f40e
1 Parent(s): 97a6056

Add GradioWorkbook

Browse files
Files changed (2) hide show
  1. app.py +7 -0
  2. requirements.txt +1 -0
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from gradio_gradioworkbook import GradioWorkbook
3
+
4
+ with gr.Blocks() as demo:
5
+ GradioWorkbook()
6
+
7
+ demo.queue().launch()
requirements.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ gradio_gradioworkbook>=0.0.1