I'm currently using Syn.Bot v4.5.1 and I am trying the Deep Mode, but it seems that it is not recognized. (I've tried with Syn.Bot v4.0.3 too but the problem persists)
The code is very simple:
Visual Basic Code
using System; using Syn.Bot.Oscova; namespace DeepTest { class Program { static void Main(string[] args) { var bot = new OscovaBot(); bot.Configuration.ProcessingMode = ProcessingMode.Deep; bot.Dialogs.Add(new AppDialog()); bot.Trainer.StartTraining(); bot.MainUser.ResponseReceived += (sender, eventArgs) => { Console.WriteLine($"Bot: {eventArgs.Response.Text}"); }; Console.Write("User:"); var userMessage = Console.ReadLine(); var result = bot.Evaluate(userMessage); result.Invoke(); Console.ReadLine(); } } }And the error is the following:
'BotConfiguration' does not contain a definition for 'ProcessingMode' and no accessible extension method 'ProcessingMode' accepting a first argument of type 'BotConfiguration' could be found (are you missing a using directive or an assembly reference?)
Thanks in advance