Update functions.py
Browse files- functions.py +1 -1
functions.py
CHANGED
@@ -60,7 +60,7 @@ def get_spacy():
|
|
60 |
return nlp
|
61 |
|
62 |
@st.experimental_memo(suppress_st_warning=True)
|
63 |
-
def inference(link, upload):
|
64 |
'''Convert Youtube video or Audio upload to text'''
|
65 |
|
66 |
if validators.url(link):
|
|
|
60 |
return nlp
|
61 |
|
62 |
@st.experimental_memo(suppress_st_warning=True)
|
63 |
+
def inference(link, upload, asr_model):
|
64 |
'''Convert Youtube video or Audio upload to text'''
|
65 |
|
66 |
if validators.url(link):
|