PirateXX commited on
Commit
7b74aa3
1 Parent(s): 579a5ab

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -4
app.py CHANGED
@@ -22,10 +22,11 @@ def chunks_of_900(text, chunk_size=900):
22
  chunks = []
23
  current_chunk = ""
24
  for sentence in sentences:
25
- if len(current_chunk)!=0:
26
- current_chunk += " "+sentence
27
- else:
28
- current_chunk += sentence
 
29
  else:
30
  chunks.append(current_chunk)
31
  current_chunk = sentence
 
22
  chunks = []
23
  current_chunk = ""
24
  for sentence in sentences:
25
+ if len(current_chunk + sentence) <= chunk_size:
26
+ if len(current_chunk)!=0:
27
+ current_chunk += " "+sentence
28
+ else:
29
+ current_chunk += sentence
30
  else:
31
  chunks.append(current_chunk)
32
  current_chunk = sentence