coffee_chat_2 / app.py
tanyarai's picture
Update app.py
29e495a verified
raw history blame
No virus
210 Bytes
import gradio as gr
from gradio_notebook import GradioNotebook
AICONFIG_FILE_PATH = "./my_app.aiconfig.json"
with gr.Blocks() as demo:
GradioNotebook(config_path=AICONFIG_FILE_PATH)
demo.queue().launch()