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
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.


ARC Pro

Upgrade to ARC Pro

Your robot can be more than a simple automated machine with the power of ARC Pro!

#1  

Hello Super le code . Merci beaucoup .

PRO
USA
#2   — Edited

nice program will try it out

#3  

@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

#4  

this is excellent, just what i was looking for :D

#7  

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?