gradio-test / app.py
vincent-pli
second sumbit
cf91df7
raw
history blame contribute delete
147 Bytes
import gradio as gr
def greet(name):
return "Hi " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()