AIML, or Artificial Intelligence Markup Language, is an
XML dialect for creating
natural language
In neuropsychology, linguistics, and philosophy of language, a natural language or ordinary language is any language that has evolved naturally in humans through use and repetition without conscious planning or premeditation. Natural languages ...
software agents.
History
The XML dialect called AIML was developed by
Richard Wallace and a worldwide
free software community between 1995 and 2002. AIML formed the basis for what was initially a highly extended
Eliza called "
A.L.I.C.E. A.L.I.C.E. (Artificial Linguistic Internet Computer Entity), also referred to as Alicebot, or simply Alice, is a natural language processing chatterbot—a program that engages in a conversation with a human by applying some heuristical pattern ...
" ("Artificial Linguistic Internet Computer Entity"), which won the annual
Loebner Prize Competition in Artificial Intelligence three times, and was also the Chatterbox Challenge Champion in 2004.
Because the A.L.I.C.E. AIML set was released under the
GNU GPL
The GNU General Public License (GNU GPL or simply GPL) is a series of widely used free software licenses that guarantee end users the four freedoms to run, study, share, and modify the software. The license was the first copyleft for general us ...
, and because most AIML interpreters are offered under a
free
Free may refer to:
Concept
* Freedom, having the ability to do something, without having to obey anyone/anything
* Freethought, a position that beliefs should be formed only on the basis of logic, reason, and empiricism
* Emancipate, to procur ...
or
open source license, many "Alicebot clones" have been created based upon the original implementation of the program and its AIML knowledge base. Free AIML sets in several languages have been developed and made available by the user community. There are AIML interpreters available in
Java,
Ruby,
Python,
C++,
C#,
Pascal
Pascal, Pascal's or PASCAL may refer to:
People and fictional characters
* Pascal (given name), including a list of people with the name
* Pascal (surname), including a list of people and fictional characters with the name
** Blaise Pascal, Fren ...
, and other languages (see
below
Below may refer to:
*Earth
*Ground (disambiguation)
*Soil
*Floor
*Bottom (disambiguation)
Bottom may refer to:
Anatomy and sex
* Bottom (BDSM), the partner in a BDSM who takes the passive, receiving, or obedient role, to that of the top or ...
).
A semi-formal specification
and a W3C XML Schema for AIML are available.
Since early 2013, The A.L.I.C.E foundation has been working on a draft specification for AIML 2.0.
Elements of AIML
AIML contains several elements. The most important of these are described in further detail below.
Categories
Categories in AIML form the fundamental unit of knowledge. A category consists of at least two further elements: the pattern and template elements. Here is a simple category:
WHAT IS YOUR NAME
My name is Michael N.S Evanious.
When this category is loaded, an AIML bot will respond to the input "What is your name" with the response "My name is Michael N.S Evanious."
Patterns
A pattern is a string of characters intended to match one or more user inputs. A literal pattern like
WHAT IS YOUR NAME
will match only one input, ignoring case: "what is your name". But patterns may also contain wildcards, which match one or more words. A pattern like
WHAT IS YOUR *
will match an infinite number of inputs, including "what is your name", "what is your shoe size", "what is your purpose in life", etc.
The AIML pattern syntax is a very simple pattern language, substantially less complex than
regular expressions and as such less than level 3 in the
Chomsky hierarchy.
To compensate for the simple
pattern matching capabilities, AIML interpreters can provide preprocessing functions to expand abbreviations, remove misspellings, etc.
The AIML syntax itself is at least as complex as
finite state machines
A finite-state machine (FSM) or finite-state automaton (FSA, plural: ''automata''), finite automaton, or simply a state machine, is a mathematical model of computation. It is an abstract machine that can be in exactly one of a finite number o ...
and as such at least of level 3 in the
Chomsky hierarchy. This is because a state correlates to one
topic
Topic, topics, TOPIC, topical, or topicality may refer to:
Topic / Topics
* Topić, a Slavic surname
* ''Topics'' (Aristotle), a work by Aristotle
* Topic (chocolate bar), a brand of confectionery bar
* Topic (DJ), German musician
* Topic (g ...
. To implement that behavior, the topic should have a "*" Pattern to make sure, that the state is not left accidentally. A state transit is implemented with the Tag. This way, the bot will be able to "remember" the topic talked about or even user privileges, which are gained during the chat.
Templates
A template specifies the response to a matched pattern. A template may be as simple as some literal text, like
My name is John.
A template may use variables, such as the example
My name is
.
which will substitute the bot's name into the sentence, or
You told me you are
years old.
which will substitute the user's age (if known) into the sentence.
Template elements include basic text formatting, conditional response (if-then/else), and random responses.
Templates may also redirect to other patterns, using an element called (Symbolic Reduction in Artificial Intelligence). This can be used to implement synonymy, as in this example (where
CDATA is used to avoid the need for
XML escaping):
WHAT IS YOUR NAME
.">DATA[My name is .>
WHAT ARE YOU CALLED
what is your name
The first category simply answers an input "what is your name" with a statement of the bot's name. The second category, however, says that the input "what are you called" should be redirected to the category that matches the input "what is your name"—in other words, it is saying that the two phrases are equivalent.
Templates can contain other types of content, which may be processed by whatever user interface the bot is talking through. So, for example, a template may use HTML tags for formatting, which can be ignored by clients that don't support HTML.
References
{{DEFAULTSORT:Aiml
Free artificial intelligence applications