bcci commited on
Commit
aacce8f
·
verified ·
1 Parent(s): a1241f1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -195,9 +195,10 @@ def tts_streaming(text: str, voice: str = "af_heart", speed: float = 1.0, format
195
 
196
  # For the first chunk, prepend 0; for later chunks, start with the previous chunk's last token.
197
  if i == 0:
198
- tokens_to_send = [0] + chunk_tokens
199
  else:
200
- tokens_to_send = [prev_last_token] + [0] + chunk_tokens
 
201
 
202
  # Save the last token of this chunk for the next iteration.
203
  prev_last_token = tokens_to_send[-1]
 
195
 
196
  # For the first chunk, prepend 0; for later chunks, start with the previous chunk's last token.
197
  if i == 0:
198
+ tokens_to_send = [0] + chunk_tokens + [0]
199
  else:
200
+ # tokens_to_send = [prev_last_token] + [0] + chunk_tokens
201
+ token_to_send = [0] + chunk_tokens + [0]
202
 
203
  # Save the last token of this chunk for the next iteration.
204
  prev_last_token = tokens_to_send[-1]