作者 lyh

gx生成评论

... ... @@ -14,6 +14,7 @@ use App\Helper\Gpt;
use App\Models\Ai\AiCommand;
use App\Models\Com\NoticeLog;
use App\Models\Project\AggregateKeywordComment;
use App\Models\Project\Project;
use Illuminate\Console\Command;
class InitKeywordComment extends Command
... ... @@ -38,8 +39,19 @@ class InitKeywordComment extends Command
return $this->_action(467);
while (true){
$list = NoticeLog::where('type', NoticeLog::TYPE_INIT_KEYWORD_COMMON)->where('status', NoticeLog::STATUS_PENDING)->get();
if(empty($list)){
sleep(200);
continue;
}
foreach ($list as $item){
echo date('Y-m-d H:i:s').'start:' . $item['id'] . PHP_EOL;
$project_id = $item['data']['project_id'];
echo date('Y-m-d H:i:s').'执行的项目id:' . $project_id . PHP_EOL;
$this->_action($project_id);
echo date('Y-m-d H:i:s').'end:' . $item['id'] . PHP_EOL;
}
}
return true;
}
/**
... ... @@ -54,8 +66,8 @@ class InitKeywordComment extends Command
$info = $aiCommonModel->read(['key'=>'tag_comment']);
$text = Gpt::instance()->openai_chat_qqs($info['ai']);
$text = Common::deal_keywords($text);
dd($text);
preg_match_all('/\{[^{}]*\}/', $text, $matches);
dd($matches[0]);
if(!empty($text)){
$data = [];
foreach ($matches[0] as $item){
... ...