mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-06 10:25:17 +08:00
18 lines
396 B
Python
18 lines
396 B
Python
import gradio as gr
|
|
|
|
|
|
def upper(sentence, sentence2):
|
|
return sentence2.upper(), sentence[::-1]
|
|
|
|
|
|
gr.Interface(upper,
|
|
[
|
|
"textbox",
|
|
gr.inputs.Textbox(lines=3, placeholder="hello")
|
|
],
|
|
[
|
|
"textbox",
|
|
gr.outputs.Textbox(lines=3, placeholder="hello")
|
|
],
|
|
live=True).launch()
|