|
@@ -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))
|