testwilldelete5 / app.py
Ankush-LM's picture
Update app.py
a11cafb verified
raw
history blame contribute delete
240 Bytes
import gradio as gr
from gradio_notebook import GradioNotebook
AICONFIG_FILE_PATH = "./my_app.aiconfig.json" # Can also be empty or None!
with gr.Blocks() as demo:
GradioNotebook(config_path=AICONFIG_FILE_PATH)
demo.queue().launch()