raghad / app.py
raghaziz's picture
Create app.py
c581532 verified
raw
history blame contribute delete
179 Bytes
import gradio as gr
def greet(name):
return "Salam: How do you do " + name + "ูƒูŠู ุงู„ุญุงู„ "
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()