AbdulBasit / app.py
basitccp's picture
Update app.py
a9b6195 verified
raw
history blame contribute delete
152 Bytes
import gradio as gr
def greet(name):
return "Kia Hal Hy " + name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()