UTS_IPA / app.py
rain1024's picture
update
096364a
raw
history blame contribute delete
No virus
175 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "! Welcome to Underthesea."
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()