test-gradio / app.py
zhenxuan's picture
Create app.py
1468d37
raw
history blame contribute delete
No virus
151 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()