Mark0047 commited on
Commit
b335626
·
verified ·
1 Parent(s): 27f374c

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ model = gr.load("models/openai/whisper-large-v3-turbo")
4
+
5
+ def transcribe(audio):
6
+ return model(audio)
7
+
8
+ gr.Interface(transcribe, gr.Audio(type="filepath"), gr.Textbox()).launch(share=True)