minimal2 / app.py
ryanleeme17
update text of output to 1 exclamation point
b0c2dc3
raw
history blame contribute delete
148 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()