Spaces:
Runtime error
Runtime error
File size: 770 Bytes
19eed64 c22fec3 19eed64 c22fec3 f5c619d c22fec3 f5c619d 5203c07 c22fec3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
import gradio as gr
import os
def combine(a, b):
return a + " " + b
def mirror(x):
return x
with gr.Blocks() as demo:
change_language_radio = gr.Radio(["Chinese", "English"])
language = gr.Textbox(label="Language")
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])
change_language_radio.change(None, [], [language], _js="() => navigator.language")
if __name__ == "__main__":
demo.launch()
|