我正在使用Program开发一个AIML聊天机器人。有没有办法重定向到用户输入中提到的链接。在AIML中,我可以使用href属性吗?例如:
<category>
<pattern>Go To google.com</pattern>
<template>Can i put something here to redirect to google.com?</template>
</category>发布于 2014-05-05 07:48:48
使用系统元素我们可以做到这一点。假设你在用窗户..。
<category>
<pattern>Go To google.com</pattern>
<template><system>start "http://www.google.com"</system></template>
</category>https://stackoverflow.com/questions/23158921
复制相似问题