root 1 month ago
parent
commit
1f583d576e
2 changed files with 26 additions and 11 deletions
  1. 26 11
      ai-slibra-assistant/api/interface.py
  2. BIN
      ai-slibra-assistant/data/location.xlsx

+ 26 - 11
ai-slibra-assistant/api/interface.py

@@ -129,18 +129,33 @@ class ChatResponse:
                 for content in contents:
                     if not content or len(content)==0:
                         continue
-                    if len(contents) >1 and contents[1] and content ==contents[0]:
-                        voice_url = voice_service(content, True, 1000)
+                    if len(content)<500:
+                        if len(contents) > 1 and contents[1] and content != contents[-1]:
+                            voice_url = voice_service(content, True, 1000)
+                        else:
+                            voice_url = voice_service(content, True)
+                        _contents.append(
+                            ChatContent(**{
+                                "content_type": 'voice',
+                                "content": content,
+                                "voice_url": voice_url,
+                                "voice_content": ''
+                            })
+                        )
                     else:
-                        voice_url = voice_service(content, True)
-                    _contents.append(
-                        ChatContent(**{
-                        "content_type": 'voice',
-                        "content": content,
-                        "voice_url": voice_url,
-                        "voice_content": ''
-                    })
-                    )
+                        size = len(content)
+                        nsize = int(len(content)/500)
+                        for i in range(nsize):
+                            segment = content[i*500:min((i+1)*500, size)]
+                            voice_url = voice_service(segment, True, 1000)
+                            _contents.append(
+                                ChatContent(**{
+                                    "content_type": 'voice',
+                                    "content": segment,
+                                    "voice_url": voice_url,
+                                    "voice_content": ''
+                                })
+                            )
                 return _contents, 0, "success"
             elif len(contents) == 1 and not contents[0]:
                 logger.error("话术生成服务异常{}".format(Error.error_nlg.value))

BIN
ai-slibra-assistant/data/location.xlsx