Update app.py
Browse files
app.py
CHANGED
@@ -43,7 +43,7 @@ def parse_transcription(logits):
|
|
43 |
|
44 |
|
45 |
# Function to retrieve an answer based on a question (using fuzzy matching)
|
46 |
-
def get_answer(wav_file):
|
47 |
|
48 |
if type(wav_file) != 'str':
|
49 |
input_values = read_file_and_process(wav_file)
|
|
|
43 |
|
44 |
|
45 |
# Function to retrieve an answer based on a question (using fuzzy matching)
|
46 |
+
def get_answer(wav_file, text=None):
|
47 |
|
48 |
if type(wav_file) != 'str':
|
49 |
input_values = read_file_and_process(wav_file)
|