
PRO
EzAng
USA
Asked
— Edited
I have many programs that I created with the AimlBot / Bing Speech recognition programs. I would like the AimlBot to speak the response the same way the PandoraBot speaks its responses.
Thank for any help?
Ang
Related Hardware EZ-B v4
Related Control
AimlBot
look at the top for ez script with sayezb.
i used the ARC .
I have many programs that I created with the AimlBot / Bing Speech recognition programs, They all worked well.
When I asked a question, I received an audio answer.
Aiml Bot worked like Pandora Bot
understand?
ah sorry i though it was desame.
Pandora Bot, you just talk and it answers
Aiml Bot use to do the same thing
1) Add the AIMLBot control to your project
2) Press the GEAR icon for configuration
3) Press the Response Script button. This is the script that will run when a response is created
4) Add this code, since you're using ARC we should use JavaScript because it's much faster...
Code:
Here is what I did:
Bing Speech control add:
ControlCommand("AimlBot", "SetPhrase", $BingSpeech)
Aiml control add
java
Audio.say(getVar("$BotResponse"));
Above works with PC
Audio.sayEZB(getVar("$BotResponse"));
Above works with ez -robot
now it works, trial and error, happy I learned perseverance a long time ago :-)
thanks
ControlCommand("AimlBot", SetPhrase, $BingSpeech)
In Recognized Script
In AIML BOT
Put in java script:Audio.say(getVar("$BotResponse"));
Save that’s it, good luck
EzAng