CoolFace
Apppublic

samsoe/minima

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