File size: 178 Bytes
0007d06
 
b94835a
 
 
0007d06
 
 
1
2
3
4
5
6
7
8
import gradio as gr

def greet(check_val):
    check_val = str(check_val.upper())
    return check_val

demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()