Gradio-Demo-App / app.py
FloydTan1987's picture
Update app.py
d47a424 verified
raw
history blame
No virus
163 Bytes
import gradio as gr
def greet(Onlineform):
return "Hello " + name + "!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch(share=True)