Example #1
0
        public MarleyService(ISessionsService sessionsService,
                             UserManager <User> userManager,
                             INlpService nlpService,
                             ITrainingService trainingService,
                             IGuideService guideService,
                             IGoalsService goalService)
        {
            _sessions     = sessionsService;
            _userManager  = userManager;
            _nlpService   = nlpService;
            _trainings    = trainingService;
            _guideService = guideService;
            _goalService  = goalService;

            Init();
        }
 public UtteranceAnalyzerDialog(INlpService nlpService)
 {
     _nlpService = nlpService;
 }
Example #3
0
 static MainModule()
 {
     _nlpService    = new NlpService();
     _workerService = new WorkerService();
 }
Example #4
0
 public IntentDetectorDialog(INlpService nlpService)
 {
     _nlpService = nlpService;
 }
Example #5
0
 public NlpApplication(INlpService nlpService)
 {
     _nlpService = nlpService;
 }