As per AIML 2.0 Support, the sraix tag is described as :
<sraix bot=“XXX”> Like <srai>, but sends content to another bot on the system, specified by botid, and returns the other bot’s response.
Now I tried it in the fashion below :
<?xml version="1.0" encoding="UTF-8"?>
<aiml versi>
<!-- insert your AIML categories here -->
<category>
<pattern>sraix test *</pattern>
<template>
<sraix bot="testbot"><star/></sraix>
</template>
</category>
</aiml>
where “testbot” is the name of the bot. This doesnt seem to work,as it needs a “botid”. How do I find the botid for a bot on AIaaS?
PS:
I do have two bots on AIaas Server. Bot 1 is where I’m uploading the above code, and bot2 ,ie testbot is where I want the response from. Bot bots have the bot brains populated with AIML,and I checked the response after compiling only.