From 5b55620e7521d0754a60fdcedf92e7ef6e4fe454 Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Thu, 12 Oct 2023 16:33:49 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Pusher.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app/Pusher.php b/app/Pusher.php index 57f03ac..11b41d7 100644 --- a/app/Pusher.php +++ b/app/Pusher.php @@ -83,8 +83,6 @@ class Pusher $response=json_encode($resp,true); } - $this->tts($resp['payload']['choices']['text'][0]['content']); - $connection->send($response); // $total_tokens = $resp['payload']['usage']['text']['total_tokens']; @@ -180,7 +178,7 @@ class Pusher } function tts($text){ - $name=time().'.mp3'; + $name=time().rand(1,100000).'.mp3'; $tts=new extend\IFlytek\Xfyun\Speech\TtsClient($this->app_id,$this->api_key,$this->api_secret,$this->ttsConfig); file_put_contents(public_path('tts').'/'.$name,$tts->request($text)->getBody()->getContents()); return 'https://chat.lihaink.cn/tts/'.$name;