sdxl_playground / app.py
tanyarai's picture
Update app.py
2d8da7e verified
raw
history blame
No virus
212 Bytes
import gradio as gr
from gradio_gradioworkbook import GradioWorkbook
AICONFIG_FILE_PATH = "./app.aiconfig.json"
with gr.Blocks() as demo:
GradioWorkbook(config_path=AICONFIG_FILE_PATH)
demo.queue().launch()