lsocpd7 / app.py
DanielAttard
gm
e97324e
raw
history blame contribute delete
No virus
157 Bytes
import gradio as gr
def greet(name):
return "Good morning " + name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()