This commit is contained in:
mkm 2023-09-22 10:30:11 +08:00
parent 688318d22f
commit fbea31ba7c

View File

@ -30,6 +30,10 @@ class Pusher
public function onMessage(TcpConnection $connection, $data)
{
$data=json_decode($data,true);
if(isset($data[0])&&$data[0]['content']==''){
return $connection->send(['header'=>['code'=>10003,'message'=>'消息不能为空']]);
}
if ($data != '') {
$client = new Client($this->assembleAuthUrl('wss://spark-api.xf-yun.com/v2.1/chat'));
// 连接到 WebSocket 服务器
@ -60,6 +64,9 @@ class Pusher
break;
}
}
if($code==10004){
return $connection->send(['header'=>['code'=>10004,'message'=>'上下文超出限制,请清空后重试']]);
}
}
}
}
@ -84,15 +91,13 @@ class Pusher
"chat" => array(
"domain" => "generalv2",
"temperature" => 0.5,
"max_tokens" => 1024
"max_tokens" => 8192
)
);
$payload = array(
"message" => array(
"text" => array(
array("role" => "user", "content" => $question)
)
"text" => $question
)
);