File size: 232 Bytes
f7770e0
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import gradio as gr

gr.Interface(
    fn=transcribe, 
    inputs=[
        gr.inputs.Audio(source="microphone", type="numpy"), 
        "state"
    ], 
    outputs= [
        "text", 
        "state"
    ], 
    live=True).launch()