NebulasBellum's picture
try edit in the run mode
b94835a verified
raw
history blame
178 Bytes
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()