test-embed-2 / app.py
abidlabs's picture
abidlabs HF Staff
Update app.py
e2d8c74 verified
raw
history blame
248 Bytes
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()