whisper-mcp / app.py
abidlabs's picture
abidlabs HF Staff
Update app.py
e41725c verified
raw
history blame
216 Bytes
import gradio as gr
whisper = gr.load("models/openai/whisper-small")
def transcribe(audio):
return "fake transcription"
gr.Interface(transcribe, gr.Audio(type="filepath"), gr.Textbox()).launch(mcp_server=True)