import gradio as gr def greet(name): return "Hello " + name + "!!\n This space hosts the ShaderEval Suite. more to follow soon." iface = gr.Interface(fn=greet, inputs="text", outputs="text") iface.launch()