Merge pull request #2908 from xinnan-tech/py_fix_text

fix: 保存音频数据文件时文本不记录
This commit is contained in:
hrz
2026-01-27 17:53:51 +08:00
committed by GitHub
@@ -141,7 +141,7 @@ class TTSProviderBase(ABC):
logger.bind(tag=TAG).error(
f"语音生成失败: {text},请检查网络或服务是否正常"
)
self.tts_audio_queue.put((SentenceType.FIRST, None, text))
self.tts_audio_queue.put((SentenceType.FIRST, None, text))
self._process_audio_file_stream(tmp_file, callback=opus_handler)
except Exception as e:
logger.bind(tag=TAG).error(f"Failed to generate TTS file: {e}")