File size: 211 Bytes
9d3e407
 
 
 
 
 
 
1
2
3
4
5
6
7
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()