mirror of https://github.com/sgoudham/Enso-Bot.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
618 B
XML
22 lines
618 B
XML
5 years ago
|
<aiml version="1.0.1" encoding="UTF-8">
|
||
|
<!-- std-startup.xml -->
|
||
|
|
||
|
<!-- Category is an atomic AIML unit -->
|
||
|
<category>
|
||
|
|
||
|
<!-- Pattern to match in user input -->
|
||
|
<!-- If user enters "LOAD AIML B" -->
|
||
|
<pattern>LOAD AIML B</pattern>
|
||
|
|
||
|
<!-- Template is the response to the pattern -->
|
||
|
<!-- This learn an aiml file -->
|
||
|
<template>
|
||
|
<learn>aiml/*/*</learn>
|
||
|
<!-- All aiml files are relative to the run dir and must be subdirs,
|
||
|
E.g. ./aiml/alice/one.aiml, ./aiml/custom/mine.aiml -->
|
||
|
|
||
|
</template>
|
||
|
|
||
|
</category>
|
||
|
|
||
|
</aiml>
|