mao / app.py
Jira's picture
Update app.py
23a4dbf
raw
history blame
No virus
171 Bytes
import gradio as gr
def greet(name):
return "Hello ครับ คุณ" + name + "! "
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()