Add New AIML Categories with Your Voice
Description
Do you want to add new content to your AIMLBot all automatically by voice? Adding new AIML categories can be a bit of a bother. There is so much overhead coding. In this tutorial I will show you how to add AIML code using a script that I wrote. In fact, this will add multiple categories and allow you to use them right away thanks to a change DJ made a few days ago!
Related Hardware
EZ-B v4
Related Robot Skills
Add Skills
Add AimlBot because this is what you are enhancing, Add Bing Speech Recognition so that you can talk to your robot, and one script skill where most of the code will go.
Hello Super le code . Merci beaucoup .
nice program will try it out
@Thomas,
Hi Thomas. If you have time could you make a video of each step to make this work. I am having a hard time following your steps to crate AIML using my voice. Do I need other plug-in to make this work.
Thank you in advance. Cheers
this is excellent, just what i was looking for
I just saw these.
I will try to make a video.
This requires the bing voice input skill.
Yes that is what I am using... i am using that and part of your code to listen...
Wait for user voice input and store input
controlCommand("Bing Speech Recognition", "StartListening") controlCommand("Bing Speech Recognition", "UnpauseListening") sleep(3000)
print($BingSpeech)
this all works
then I do this... if ($BingSpeech = "how are you")
do something
Endif
even though the $BingSpeech printed "how are you" from my voice, the If statement does not fire am I missing something?