@@ -75,7 +75,7 @@ class ResponseTypeDetector:
@staticmethod
def if_message_suitable_for_voice(message):
# 使用语音的文字不适合过长
- if len(message) > 30:
+ if len(message) > 50:
return False
# 只有纯文字的消息适合使用语音
if not ResponseTypeDetector.is_chinese_only(message):