This commit is contained in:
mkm 2023-10-13 19:15:50 +08:00
parent 44d6469801
commit 248a5232c0

View File

@ -75,10 +75,14 @@ class Pusher
if (count($arr) == 2) {
$resp['payload']['choices']['tts_text'] = $text . $arr[0];
unset($arr[0]);
if (count($arr) > 0) {
foreach ($arr as $k => $v) {
$text .= $v;
}
$tt='';
$pattern = "/[,.?!;:]/";
foreach ($arr as $k => $v) {
$tt .= $v;
}
if ($tt!=''||preg_match($pattern, $tt)) {
$text.=$tt;
} else {
$text = '';
}
@ -92,7 +96,17 @@ class Pusher
}
$connection->send($response);
} else {
$resp['payload']['choices']['tts_text'] = $text.$resp['payload']['choices']['text'][0]['content'];
$a=$resp['payload']['choices']['text'][0]['content'];
if(strlen($a)>0){
$pattern = "/[,.?!;:]/";
if (preg_match($pattern, $a)) {
$resp['payload']['choices']['tts_text'] = $text;
} else {
$resp['payload']['choices']['tts_text'] = $text.$a;
}
}else{
$resp['payload']['choices']['tts_text'] = $text.$a;
}
$text = '';
$response = json_encode($resp, true);