import gradio as gr def greet(name): if name.lower() == "mai": return "Mai is the cutest girl in the world!" else: return f"Hello {name},fuck you, Mai is still the best!" demo = gr.Interface(fn=greet, inputs="text", outputs="text") demo.launch()