Kinza / app.py
KinzaAwais's picture
Update app.py
ec33e6d verified
raw
history blame
211 Bytes
import gradio as gr
def greet(name):
return "Salam " + name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()
git add app.py
git commit -m "Add application file"
git push