修复 未使用的IBserGPT

This commit is contained in:
小肥羊 2025-04-22 11:42:52 +08:00
parent 9558aab6ce
commit 25f9dc0ba7
1 changed files with 1 additions and 3 deletions

View File

@ -33,13 +33,11 @@ namespace VideoAnalysisCore.Controllers
private readonly Repository<VideoTask> videoTaskDB; private readonly Repository<VideoTask> videoTaskDB;
private readonly Repository<VideoKonwPoint> videoKonwPointDB; private readonly Repository<VideoKonwPoint> videoKonwPointDB;
private readonly Repository<NodePackageInfo> nodePackageInfoDB; private readonly Repository<NodePackageInfo> nodePackageInfoDB;
private readonly IBserGPT chatGPT; public LJZK_Controller( IMapper mp, Repository<NodeSubscription> nodesubscriptionDB,
public LJZK_Controller( IMapper mp, IBserGPT chatGPT, Repository<NodeSubscription> nodesubscriptionDB,
Repository<VideoTask> videoTaskDB = null, Repository<VideoKonwPoint> videoKonwPointDB = null Repository<VideoTask> videoTaskDB = null, Repository<VideoKonwPoint> videoKonwPointDB = null
, Repository<NodePackageInfo> nodePackageInfoDB = null) , Repository<NodePackageInfo> nodePackageInfoDB = null)
{ {
this.mp = mp; this.mp = mp;
this.chatGPT = chatGPT;
this.nodesubscriptionDB = nodesubscriptionDB; this.nodesubscriptionDB = nodesubscriptionDB;
this.videoTaskDB = videoTaskDB; this.videoTaskDB = videoTaskDB;
this.videoKonwPointDB = videoKonwPointDB; this.videoKonwPointDB = videoKonwPointDB;