如何将AIML版本从1.0.1更新为AIML 2.0

时间:2018-10-16 06:38:31

标签: aiml

当前应用程序正在使用AIML版本1.0.1,我想将其更新为2.0。 xml文件具有类似-

的代码
<aiml version = "1.0.1" encoding = "UTF-8">
<aiml>
    <category>
        <name>URL</name>
        <pattern>Example link*</pattern>
        <template>Here is the Link !
        <hyperlink href="https://example.com"target="_blank">Click Here</hyperlink>
        <id>URL1</id>
    </template>
    </category>
</aiml>

2 个答案:

答案 0 :(得分:2)

您正在使用哪个机器人?

AIML 2.0与1.0完全兼容

答案 1 :(得分:1)

有关AIML(包括AIML 2)的文档可在此处找到:https://pandorabots.com/docs/aiml-reference/

您现在可以使用标签

将您的示例类别简化为该类别
<category>
    <pattern>Example link</pattern>
    <template>Here is the Link !
        <link>
            <text>Click here</text>
            <url>https://example.com</url>
        </link>
    </template>
</category>