API_demo_client / app.py
Nuno-Tome's picture
no message
e8f20a0
raw
history blame
167 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!"
demo = gr.Interface(fn=greet, inputs="textbox", outputs="textbox")
demo.launch(share=True)