bcci commited on
Commit
d5853ad
·
verified ·
1 Parent(s): 3b77557

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -195,13 +195,13 @@ 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 = [0] + prev_last_token + [16] + chunk_tokens
201
  # token_to_send = [0] + chunk_tokens
202
 
203
  # Save the last token of this chunk for the next iteration.
204
- prev_last_token = chunk_tokens[-2:]
205
 
206
  # Prepare the model input (a batch of one sequence).
207
  final_token = [tokens_to_send]
 
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 = [0] + prev_last_token + [16] + chunk_tokens + [0]
201
  # token_to_send = [0] + chunk_tokens
202
 
203
  # Save the last token of this chunk for the next iteration.
204
+ prev_last_token = chunk_tokens[-1:]
205
 
206
  # Prepare the model input (a batch of one sequence).
207
  final_token = [tokens_to_send]