import gradio as gr def greet(input): return "Hello " + input + ", I'm Yixuan" demo = gr.Interface(fn=greet, inputs="textbox", outputs="textbox") if __name__ == "__main__": demo.launch()