Kokoro_onnx / gr-demo.py
nkalra0123's picture
Upload folder using huggingface_hub
9132718 verified
raw
history blame contribute delete
205 Bytes
import gradio as gr
def greet(name, intensity):
return "Hello, " + name + "!" * int(intensity)
demo = gr.Interface(
fn=greet,
inputs=["text", "slider"],
outputs=["text"],
)
demo.launch()