Rossdan commited on
Commit
6403228
1 Parent(s): 28ce05a

Update app.py

Browse files

Use GradioNotebook in app.py

Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -1,8 +1,8 @@
1
  import gradio as gr
2
- from gradio_gradioworkbook import GradioWorkbook
3
 
4
  AICONFIG_FILE_PATH = "./music_playground.aiconfig.json" #Can also be empty or None!
5
  with gr.Blocks() as demo:
6
- GradioWorkbook(config_path=AICONFIG_FILE_PATH)
7
 
8
  demo.queue().launch()
 
1
  import gradio as gr
2
+ from gradio_notebook import GradioNotebook
3
 
4
  AICONFIG_FILE_PATH = "./music_playground.aiconfig.json" #Can also be empty or None!
5
  with gr.Blocks() as demo:
6
+ GradioNotebook(config_path=AICONFIG_FILE_PATH)
7
 
8
  demo.queue().launch()