使用AIML进行页面重定向

时间:2014-04-18 17:20:07

标签: chatbot aiml

我正在使用Program-O开发AIML聊天机器人。有没有办法重定向到用户输入中提到的链接。我可以在AIML中使用href属性吗?例如:

<category>
    <pattern>Go To google.com</pattern>
    <template>Can i put something here to redirect to google.com?</template>
</category>

1 个答案:

答案 0 :(得分:2)

使用系统元素,我们可以做到这一点。 假设您正在使用Windows ...

<category>
    <pattern>Go To google.com</pattern>
    <template><system>start "http://www.google.com"</system></template>
</category>