mirror of
https://github.com/hastagAB/Awesome-Python-Scripts.git
synced 2024-11-24 04:21:08 +00:00
23 lines
560 B
XML
23 lines
560 B
XML
|
<aiml version="1.0.1" encoding="UTF-8">
|
||
|
<!-- init.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>ai.aiml</learn>
|
||
|
<!-- You can add more aiml files here -->
|
||
|
<!--<learn>more_aiml.aiml</learn>-->
|
||
|
</template>
|
||
|
|
||
|
</category>
|
||
|
|
||
|
</aiml>
|
||
|
|