Пример #1
0
 public FuzzyMatchParser(ChatModel chatModel, FuzzyMatchService fuzzyMatchService, IChatScriptManager chatScriptManager, ChatFlowStep chatFlowStep)
 {
     this.fuzzyMatchService = fuzzyMatchService;
     this.chatFlowStep      = chatFlowStep;
     this.chatModel         = chatModel;
     this.chatScriptManager = chatScriptManager;
 }
Пример #2
0
 public IntentGatewayParser(ChatModel chatModel, IChatScriptManager chatScriptManager, TextClassificationService classificationService, IExternalDataStorageService externalDataStorageService, ChatConfiguration chatConfiguration)
 {
     this.chatModel                  = chatModel;
     this.chatScriptManager          = chatScriptManager;
     this.classificationService      = classificationService;
     this.externalDataStorageService = externalDataStorageService;
     this.chatConfiguration          = chatConfiguration;
 }