chat-image-edit / app.py
simonlee-cb's picture
refactor: formatting
fcb8f25
raw
history blame contribute delete
235 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()