chat-image-edit / gradio_app.py
simonlee-cb's picture
feat: added examples
9e6acd9
raw
history blame
218 Bytes
import gradio as gr
import gradio_demo
import gradio_chat
with gr.Blocks() as demo:
gradio_chat.demo.render()
with demo.route("PicEdit"):
gradio_demo.demo.render()
if __name__ == "__main__":
demo.launch()