CoolFace
Apppublic

ColorGamble/BasicSpace

sourceHugging Faceapache-2.0updated 3y agoView on Hugging Face
0likes
app.py7 linesDownload Raw Back to root
1import gradio as gr
2
3def greet(name):
4    return "Hello " + name + "!!"
5
6iface = gr.Interface(fn=greet, inputs="text", outputs="text")
7iface.launch()