mao / app.py
Jira's picture
Create app.py
05c44f6
raw
history blame
160 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "ครับ!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()