Commit
·
55fd076
1
Parent(s):
167c11f
Update app.py
Browse files
app.py
CHANGED
@@ -177,8 +177,8 @@ def summarize_meeting(filepath):
|
|
177 |
|
178 |
# Consolidate these meeting summaries.
|
179 |
prompt_request = str(prompt_response)
|
180 |
-
tokens_PR = word_tokenize(
|
181 |
-
count_tokens_PR = len(
|
182 |
|
183 |
if count_tokens_PR <2000:
|
184 |
# Summarize the text of the meeting transcripts.
|
|
|
177 |
|
178 |
# Consolidate these meeting summaries.
|
179 |
prompt_request = str(prompt_response)
|
180 |
+
tokens_PR = word_tokenize(prompt_request)
|
181 |
+
count_tokens_PR = len(tokens_PR)
|
182 |
|
183 |
if count_tokens_PR <2000:
|
184 |
# Summarize the text of the meeting transcripts.
|