hello_python / app.py
rebase's picture
Update app.py
9c882b1
raw
history blame
171 Bytes
import gradio as gr
def greet(arg1):
return f"{arg1.capitalize()} Hello " + arg1 + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()