Spaces:
Runtime error
Runtime error
File size: 156 Bytes
51c6fbe | 1 2 3 4 5 6 7 8 9 | import gradio as gr
def infer(name):
return "Hello " + name + "!"
endpoint = gr.Interface(fn=infer, inputs="text", outputs="text")
endpoint.launch() |