Dan Mo
Add initial implementation of Gradio interface for greeting users
0330bc9
raw
history blame
158 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch(share=True)