test-embed / app.py
abidlabs's picture
abidlabs HF Staff
Update app.py
be53a1e verified
raw
history blame contribute delete
247 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()