practice / aiASR
vividsd's picture
git add app.py git commit -m "Add application file" git push
04c4f7e
raw
history blame
No virus
206 Bytes
git clone https://huggingface.co/spaces/vividsd/practice
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()