chat-image-edit / app.py
simonlee-cb's picture
refactor: clean up frontend files
c16bc85
raw
history blame
234 Bytes
import gradio as gr
import image_edit_demo
import image_edit_chat
with gr.Blocks() as demo:
image_edit_chat.demo.render()
with demo.route("PicEdit"):
image_edit_demo.demo.render()
if __name__ == "__main__":
demo.launch()