mirror of
https://github.com/gradio-app/gradio.git
synced 2025-02-23 11:39:17 +08:00
17 lines
371 B
Python
17 lines
371 B
Python
|
import gradio as gr
|
||
|
|
||
|
def fn(im):
|
||
|
return im, "https://picsum.photos/400/300"
|
||
|
|
||
|
demo = gr.Interface(
|
||
|
fn=fn,
|
||
|
inputs=gr.Image("https://picsum.photos/300/200", label="InputImage"),
|
||
|
outputs=[gr.Image(label="Loopback"), gr.Image(label="RemoteImage")],
|
||
|
examples=[
|
||
|
["https://picsum.photos/640/480"]
|
||
|
]
|
||
|
)
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
demo.launch()
|