minimal / app.py
yontan-yane's picture
create a hello world app
3d459c0
raw
history blame contribute delete
129 Bytes
import gradio as gr
def greet(name): return "Hello " + name + "!!"
gr.Interface(fn=greet, inputs="text", outputs="text").launch()