mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-09 02:00:44 +08:00
4b57984ead
* add password and email textbox types * changelog + fix tests * formatting * fix tests maybe * fix tests * add more tests * whatever * weird thing
47 lines
982 B
Python
47 lines
982 B
Python
import gradio as gr
|
|
import os
|
|
|
|
|
|
def combine(a, b):
|
|
return a + " " + b
|
|
|
|
|
|
def mirror(x):
|
|
return x
|
|
|
|
|
|
with gr.Blocks() as demo:
|
|
|
|
txt = gr.Textbox(label="Input", lines=2)
|
|
txt_2 = gr.Textbox(label="Input 2")
|
|
txt_3 = gr.Textbox(value="", label="Output")
|
|
btn = gr.Button(value="Submit")
|
|
btn.click(combine, inputs=[txt, txt_2], outputs=[txt_3])
|
|
|
|
with gr.Row():
|
|
im = gr.Image()
|
|
im_2 = gr.Image()
|
|
|
|
btn = gr.Button(value="Mirror Image")
|
|
btn.click(mirror, inputs=[im], outputs=[im_2])
|
|
|
|
gr.Markdown("## Text Examples")
|
|
gr.Examples(
|
|
[["hi", "Adam"], ["hello", "Eve"]],
|
|
[txt, txt_2],
|
|
txt_3,
|
|
combine,
|
|
cache_examples=True,
|
|
)
|
|
gr.Markdown("## Image Examples")
|
|
gr.Examples(
|
|
examples=[os.path.join(os.path.dirname(__file__), "lion.jpg")],
|
|
inputs=im,
|
|
outputs=im_2,
|
|
fn=mirror,
|
|
cache_examples=True,
|
|
)
|
|
|
|
if __name__ == "__main__":
|
|
demo.launch()
|