Duplicated from abidlabs/test-embed
650f668 e2d8c74 be53a1e e2d8c74
1
2
3
4
5
6
7
8
import gradio as gr with gr.Blocks() as demo: gr.Interface(lambda x:x, gr.Image("cheetah.jpg"), gr.Image()) with demo.route("page") as page: gr.Interface(lambda x:x, gr.Image("cheetah.jpg"), gr.Image(), title="second page") demo.launch()