Spaces:
Runtime error
Runtime error
import gradio as gr | |
def say_hello(name): | |
return f"Hello, {name}!" | |
iface = gr.Interface(fn=say_hello, inputs="text", outputs="text") | |
if __name__ == "__main__": | |
iface.launch() | |