new_space / app.py
Rossdan's picture
Create app.py
ab5d4fc verified
raw
history blame contribute delete
212 Bytes
import gradio as gr
from gradio_notebook import GradioNotebook
AICONFIG_FILE_PATH = "./music_gen.aiconfig.json"
with gr.Blocks() as demo:
GradioNotebook(config_path=AICONFIG_FILE_PATH)
demo.queue().launch()