import gradio as gr def greet(name): return f"سلام {name} عزیز، خوش آمدی!" gr.Interface(fn=greet, inputs="text", outputs="text").launch()