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