修复 未使用的IBserGPT
This commit is contained in:
parent
d1bbce8baf
commit
9558aab6ce
|
|
@ -20,6 +20,7 @@ namespace Learn.VideoAnalysis.API.Expand
|
|||
service.AddScheduler();
|
||||
service.AddTransient<TaskFileClearJob>();
|
||||
service.AddTransient<NodePackageJob>();
|
||||
|
||||
}
|
||||
public static void UseCoravelExpand(this IApplicationBuilder provider)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -25,13 +25,11 @@ namespace VideoAnalysisCore.Controllers
|
|||
private readonly IMapper mp;
|
||||
private readonly Repository<VideoTask> videoTaskDB;
|
||||
private readonly Repository<VideoKonwPoint> videoKonwDB;
|
||||
private readonly IBserGPT chatGPT;
|
||||
public ApiController(Repository<VideoTask> videoTaskDB,
|
||||
IMapper mp, IBserGPT chatGPT, Repository<VideoKonwPoint> videoKonwDB)
|
||||
IMapper mp, Repository<VideoKonwPoint> videoKonwDB)
|
||||
{
|
||||
this.videoTaskDB = videoTaskDB;
|
||||
this.mp = mp;
|
||||
this.chatGPT = chatGPT;
|
||||
this.videoKonwDB = videoKonwDB;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue