Requested — Edited

Pandorabot Aiml 2.0


Completed
This feature request has been completed. Install the latest ARC Pro to experience the newest features and bug fixes.

Get ARC Pro

Well the current EZ PandoraBot Control wants to connect to https://www.pandorabots.com/botmaster/en/home which is live and working just nice but only supports AIML 1.0

Now if you go to the same domain's home at https://www.pandorabots.com it's a whole new program that supports AIML 2.0 which is vastly superior to the original specification. (Setup and account and create a bot - nicely done...) BotID's are specified as username/bot_name unlike the old site that passes around a long hexadecimal string as an id.

Any chance the old PandoraBot Control will be copied and updated so we have access to PandoraBot Control v1 and PandoraBot Control v2 ? I think their server is equipped to provide access via the new API: https://developer.pandorabots.com

Thanks, Stephen


ARC Pro

Upgrade to ARC Pro

Stay on the cutting edge of robotics with ARC Pro, guaranteeing that your robot is always ahead of the game.

PRO
USA
#1  

Stephen, Check out www.botlibre.com Supports AIML 2.0 and has its own scripting language. I use it with my bot.

Richard Z

#2  

@rz How do you integrate it with EZ to run scripts?

#3  

This is a good question. Coming from ProgramAB this pandorabots V1.0 is really meh. The 2.0 spec is where it is at.

I do like how EZB controls interface with the chatbot though. That part is good.

PRO
USA
#4  

@Stephen I the EZB speech recognition, I have a catch phrase such as the Ok google. I use the German word for attention "Aufmerksamkeit" this pauses the EZB Speech Recognition and un-pauses the Bing Speech Recognition. Then this captured speech is then sent to Botlibre. I then parse the returned speech and have my bot say it. I will fire up my laptop and post the code I use. Still a work it progress but it works.

PRO
USA
#5  

When Aufmerksamkeit is recognized



ControlCommand("SpeechRecognition",PauseOn)
ControlCommand("Bing Speech Recognition", StartListening)
ControlCommand("Bing Speech Recognition", UnpauseListening)


Bing Speech Recognition 'Script'



#Pause long enough to capture speech.
Sleep(5000) #More then enough 5sec.

# Start the AIML Service
ControlCommand("Services",ScriptStart,"AIMLService")
#ControlCommand("Bing Speech Recognition", StopListening)

#Enable EZB Speech Recongbnition
ControlCommand("Speech Recognition", PauseOff)
#Pause Bing Speech Recognition
ControlCommand("Bing Speech Recognition", PauseListening)


In Bing Speech Recognition configuration the variable is set to $HumanSaid

AIML Service



$URL ="http://www.botlibre.com/rest/botlibre/form-chat?instance=XXXXXXXXXX&message=" + $HumanSaid + "&user=XXXXXXX&password=XXXXXXXX&application=XXXXXXXXXXXXXXXXX"

sleep(3000)
$Answer = HttpGet($URL)


$StringLength = length($Answer)
$StartIndex = IndexOf($Answer,"<message>")
$EndIndex = IndexOf($Answer, "</message>")

$MessageLength = $EndIndex - ($StartIndex +9)

$APIResponse = SubString($Answer,$StartIndex + 9,$MessageLength)


Say($APIResponse)



PRO
USA
#6  

Aiml 2 http://www.aiml.foundation/doc.html

EzAng