command('AIGeneration:checkImgTasks')->everyMinute(); // 每分钟检查一次视频生成任务状态 $schedule->command('AIGeneration:checkVideoTasks')->everyMinute(); // 没分钟检查一次动漫对话图片生成状态 $schedule->command('Anime:checkImgUrl')->everyMinute(); // 每30秒处理一次图片生成任务队列 $schedule->command('image-generation:process-queue')->everyMinute(); } /** * Register the commands for the application. * * @return void */ protected function commands() { $this->load(__DIR__ . '/Commands'); require base_path('routes/console.php'); } }