akashsivanandan's picture
Created app.py
f7770e0
raw
history blame
232 Bytes
import gradio as gr
gr.Interface(
fn=transcribe,
inputs=[
gr.inputs.Audio(source="microphone", type="numpy"),
"state"
],
outputs= [
"text",
"state"
],
live=True).launch()