Spaces:
Runtime error
Runtime error
File size: 142 Bytes
25d8e7c | 1 2 3 4 5 6 7 8 | import gradio as gr
def hello(name):
return f"Hello {name}!"
demo = gr.Interface(fn=hello, inputs="text", outputs="text")
demo.launch()
|