KaiOfTime's picture
Update app.py
1b63108 verified
raw
history blame
163 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
interface.launch(share=True)