umer-tayyeb / app.py
umertayyeb's picture
Create app.py
0cbe68c verified
raw
history blame contribute delete
151 Bytes
import gradio as gr
def greet(name):
return "Hi there " + name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()