snoringAI / app.py
CXDJY's picture
Change input type to audio
f702b91
raw
history blame
155 Bytes
import gradio as gr
def greet(name: str):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="audio", outputs="text")
iface.launch()