Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -197,8 +197,8 @@ def tts_streaming(text: str, voice: str = "af_heart", speed: float = 1.0, format
|
|
197 |
if i == 0:
|
198 |
tokens_to_send = [0] + chunk_tokens
|
199 |
else:
|
200 |
-
|
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]
|
|
|
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[-1]
|