minimal / app.py
totsunemario's picture
first commit
f0110ea
raw
history blame contribute delete
No virus
135 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
gr.Interface(fn=greet, inputs="text", outputs="text").launch()