test / app.py
giannicrivello's picture
init
7abf4f0
raw
history blame
147 Bytes
import gradio as gr
def test(input: str):
return "Hello, " + input
demo = gr.Interface(fn=test, inputs="text", outputs="text")
demo.launch()