public CommandHandler() { LUProcessor = new LUProcessor(); SpeechProcessor = new SpeechProcessor(); DbContext = StaticDb.CreateContext(); }
private async Task <PredictionResponse> TextToCommand(string commandText) { return(await LUProcessor.Process(commandText)); }