jhonalex / app.py
antagonico's picture
Update app.py
48ca23f
raw
history blame contribute delete
134 Bytes
import gradio as gr
def greet():
return "Hello, World!"
iface = gr.Interface(fn=greet, inputs=[], outputs="text")
iface.launch()