File size: 229 Bytes
fbbfe38
4764581
d2e98a1
4764581
 
 
 
 
1
2
3
4
5
6
7
8
9
import gradio as gr
from gradio_notebook import GradioNotebook

CONFIG_FILE_PATH = "./config.json" #Can also be empty or None!
with gr.Blocks() as demo:
        GradioNotebook(config_path=CONFIG_FILE_PATH)

demo.queue().launch()