learn2refocus / app.py
tedlasai's picture
app again
5aaa283
raw
history blame
145 Bytes
import gradio as gr
def greet(name):
return "hi " + name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()