mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-30 11:00:11 +08:00
6 lines
121 B
Python
6 lines
121 B
Python
import gradio as gr
|
|
|
|
def upper(sentence):
|
|
return sentence.upper()
|
|
|
|
gr.Interface(upper, "textbox", "textbox").launch() |