andreinigo commited on
Commit
55fd076
·
1 Parent(s): 167c11f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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(text)
181
- count_tokens_PR = len(tokens)
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.