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