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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -153,7 +153,7 @@ def summarize_meeting(filepath):
153
  token_count = count_tokens(filename)
154
  print(token_count)
155
  prompt_response = []
156
- # Break the text of the meeting transcripts into chunks of 4000 tokens.
157
  chunks = break_up_file_to_chunks(filename)
158
  # Summarize each chunk.
159
  for i, chunk in enumerate(chunks):
 
153
  token_count = count_tokens(filename)
154
  print(token_count)
155
  prompt_response = []
156
+ # Break the text of the meeting transcripts into chunks.
157
  chunks = break_up_file_to_chunks(filename)
158
  # Summarize each chunk.
159
  for i, chunk in enumerate(chunks):