Spaces:
Sleeping
Sleeping
nslaughter
commited on
Return the model response
Browse files
app.py
CHANGED
@@ -69,6 +69,8 @@ def extract_action_items(transcript: str) -> str:
|
|
69 |
]
|
70 |
|
71 |
response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
|
|
|
|
|
72 |
|
73 |
|
74 |
def transcribe_and_extract_action_items(audio_path):
|
|
|
69 |
]
|
70 |
|
71 |
response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
|
72 |
+
print(response)
|
73 |
+
return response
|
74 |
|
75 |
|
76 |
def transcribe_and_extract_action_items(audio_path):
|