testapp / app.py
thamada's picture
Update app.py
04586f2 verified
raw
history blame
159 Bytes
import gradio as gr
def display_message():
return "こんにけは"
iface = gr.Interface(fn=display_message, inputs=None, outputs="text")
iface.launch()