Spaces:
Sleeping
Sleeping
Create app.py
Browse files
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)
|