<?xml version="1.0" encoding="UTF-8"?>
<aiml version="1.0">
  <category>
    <pattern>HELLO</pattern>
    <template>
      Hi there! How can I help you today?
    </template>
  </category>

  <category>
    <pattern>WHAT IS YOUR NAME</pattern>
    <template>
      My name is ALICE. What's yours?
    </template>
  </category>

  <category>
    <pattern>MY NAME IS *</pattern>
    <template>
      Nice to meet you, <star/>!
    </template>
  </category>

  <category>
    <pattern>HOW ARE YOU</pattern>
    <template>
      I'm doing well, thank you for asking! How are you?
    </template>
  </category>

  <category>
    <pattern>WHAT IS * PLUS *</pattern>
    <template>
      I'm not very good at math, but I think <star index="1"/> plus <star index="2"/> is a number!
    </template>
  </category>

  <category>
    <pattern>BYE</pattern>
    <template>
      Goodbye! It was nice talking to you.
    </template>
  </category>
</aiml>
