Spaces:
Runtime error
Runtime error
File size: 135 Bytes
063df12 |
1 2 3 4 5 6 7 8 |
import gradio as gr
def greet():
return "Hello, World!"
iface = gr.Interface(fn=greet, inputs=[], outputs="text")
iface.launch()
|