Spaces:
Sleeping
Sleeping
Update functions.py
Browse files- functions.py +4 -4
functions.py
CHANGED
@@ -190,10 +190,10 @@ def process_podcast(url, path):
|
|
190 |
'''Get podcast transcription into json'''
|
191 |
|
192 |
output = {}
|
193 |
-
podcast_details = get_transcribe_podcast
|
194 |
-
podcast_summary = get_podcast_summary
|
195 |
-
podcast_guest_details = get_podcast_guest
|
196 |
-
podcast_highlights = get_podcast_highlights
|
197 |
output['podcast_details'] = podcast_details
|
198 |
output['podcast_summary'] = podcast_summary
|
199 |
output['podcast_guest'] = podcast_guest_details[0]
|
|
|
190 |
'''Get podcast transcription into json'''
|
191 |
|
192 |
output = {}
|
193 |
+
podcast_details = get_transcribe_podcast(url, path)
|
194 |
+
podcast_summary = get_podcast_summary(podcast_details)
|
195 |
+
podcast_guest_details = get_podcast_guest(podcast_details)
|
196 |
+
podcast_highlights = get_podcast_highlights(podcast_details)
|
197 |
output['podcast_details'] = podcast_details
|
198 |
output['podcast_summary'] = podcast_summary
|
199 |
output['podcast_guest'] = podcast_guest_details[0]
|