CoolFace
Apppublic

HusseinSamma/Stones_Secrets

sourceHugging Facemitupdated 3y agoView on Hugging Face
0likes
app.py14 linesDownload Raw Back to root
1import gradio as gr2 3 4def greet(name, intensity):5    return "Hello, " + name + "!" * int(intensity)6 7interface = gr.Interface(8    fn=greet,9    inputs=["text", "slider"],10    outputs=["text"],11)12 13if __name__ == "__main__":14    interface.launch()