コード例 #1
0
 public CommandHandler()
 {
     LUProcessor     = new LUProcessor();
     SpeechProcessor = new SpeechProcessor();
     DbContext       = StaticDb.CreateContext();
 }
コード例 #2
0
 private async Task <PredictionResponse> TextToCommand(string commandText)
 {
     return(await LUProcessor.Process(commandText));
 }