Merge pull request #1529 from xinnan-tech/py_wakeup_text

Py wakeup text
This commit is contained in:
CGD
2025-06-10 11:16:18 +08:00
committed by GitHub
2 changed files with 13 additions and 9 deletions
@@ -538,7 +538,7 @@ export default {
.data-table { .data-table {
border-radius: 6px; border-radius: 6px;
overflow-y: auto; overflow-y: hidden;
background-color: transparent !important; background-color: transparent !important;
--table-max-height: calc(100vh - 40vh); --table-max-height: calc(100vh - 40vh);
max-height: var(--table-max-height); max-height: var(--table-max-height);
+12 -8
View File
@@ -1,4 +1,5 @@
import os import os
import re
import queue import queue
import uuid import uuid
import asyncio import asyncio
@@ -169,15 +170,18 @@ class TTSProviderBase(ABC):
content_type=ContentType.ACTION, content_type=ContentType.ACTION,
) )
) )
self.tts_text_queue.put( # 对于单句的文本,进行分段处理
TTSMessageDTO( segments = re.split(r'([。!?!?;\n])', content_detail)
sentence_id=sentence_id, for seg in segments:
sentence_type=SentenceType.MIDDLE, self.tts_text_queue.put(
content_type=content_type, TTSMessageDTO(
content_detail=content_detail, sentence_id=sentence_id,
content_file=content_file, sentence_type=SentenceType.MIDDLE,
content_type=content_type,
content_detail=seg,
content_file=content_file,
)
) )
)
self.tts_text_queue.put( self.tts_text_queue.put(
TTSMessageDTO( TTSMessageDTO(
sentence_id=sentence_id, sentence_id=sentence_id,