Skip to content
This repository has been archived by the owner on Oct 23, 2018. It is now read-only.

Commit

Permalink
Merge pull request #1 from carol975/carol975-patch-1
Browse files Browse the repository at this point in the history
Created an helloworld.aiml
  • Loading branch information
carol975 authored Oct 15, 2018
2 parents 63be2e3 + bd88e49 commit dfcc01a
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions AIML/helloworld.aiml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<aiml version="1.0.1">
<category>
<pattern>HELLO WORLD</pattern>
<template>
<random>
<li>Hello World!</li>
<li>Hey!</li>
<li>This is a list of responses which will be chosen randomly when the input matches "HELLO WORLD"</li>
</random>
</template>
</category>

<category>
<pattern>WHAT IS YOUR NAME</pattern>
<template>My name is <set name="name">Hello World</set>!</template>
</category>

<category>
<pattern>WHO ARE YOU</pattern>
<template><srai>WHAT IS YOUR NAME</srai></template>
</category>

</aiml>


0 comments on commit dfcc01a

Please sign in to comment.