res01 / app.py
ajdatosys's picture
Update app.py
38dc0c8 verified
raw
history blame
149 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
demo = gr.Interface(fn=greet, inputs="text2", outputs="text")
demo.launch()