mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-06 10:25:17 +08:00
6 lines
132 B
Python
6 lines
132 B
Python
import gradio as gr
|
|
|
|
def upper(sentence):
|
|
return sentence.upper()
|
|
|
|
gr.Interface(upper, "textbox", "textbox", live=True).launch() |