faisalmalik / app.py
faisalmieaust's picture
Update app.py
ad24643 verified
raw
history blame contribute delete
148 Bytes
import gradio as gr
def greet(Name):
return "Salam " + Name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()