tanyarai's picture
Update app.py
8a7bf89 verified
raw history blame
No virus
243 Bytes
import gradio as gr
from gradio_gradioworkbook import GradioWorkbook
AICONFIG_FILE_PATH = "./my_app.aiconfig.json" #Can also be empty or None!
with gr.Blocks() as demo:
GradioWorkbook(config_path=AICONFIG_FILE_PATH)
demo.queue().launch()