Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
from transformers import pipeline
|
2 |
import gradio as gr
|
3 |
|
4 |
-
modelo = pipeline("automatic-speech-recognition", model="
|
5 |
|
6 |
def transcribe(audio):
|
7 |
text = modelo(audio)["text"]
|
|
|
1 |
from transformers import pipeline
|
2 |
import gradio as gr
|
3 |
|
4 |
+
modelo = pipeline("automatic-speech-recognition", model="openai/whisper-large-v3-turbo")
|
5 |
|
6 |
def transcribe(audio):
|
7 |
text = modelo(audio)["text"]
|