practice / app.py
vlf2444's picture
'add'
1de6af2
raw
history blame
200 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!"
demo = gr.Interface(fn=greet, inputs="textbox", outputs="textbox")
if __name__ == "__main__":
demo.launch(share = True)