test / app.py
Dylan-Kaneshiro's picture
revert
e352433
raw
history blame contribute delete
136 Bytes
import gradio as gr
def greet(s):
return "Hello, " + s
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()