Spaces:
Runtime error
Runtime error
| import gradio as gr | |
| def greet(): | |
| return "Hello, World!" | |
| iface = gr.Interface(fn=greet, inputs=[], outputs="text") | |
| iface.launch() |
| import gradio as gr | |
| def greet(): | |
| return "Hello, World!" | |
| iface = gr.Interface(fn=greet, inputs=[], outputs="text") | |
| iface.launch() |