├── .gitignore
├── CHANGES.txt
├── COPYING.txt
├── MANIFEST.in
├── README.rst
├── SUPPORTED_TAGS.txt
├── TODO.txt
├── aiml
├── AimlParser.py
├── DefaultSubs.py
├── Kernel.py
├── PatternMgr.py
├── Utils.py
├── WordSub.py
├── __init__.py
├── botdata
│ ├── alice
│ │ ├── ai.aiml
│ │ ├── alice.aiml
│ │ ├── astrology.aiml
│ │ ├── atomic.aiml
│ │ ├── badanswer.aiml-2.0
│ │ ├── biography.aiml
│ │ ├── bot.aiml
│ │ ├── bot_profile.aiml
│ │ ├── client.aiml
│ │ ├── client_profile.aiml
│ │ ├── computers.aiml
│ │ ├── continuation.aiml
│ │ ├── date.aiml
│ │ ├── default.aiml
│ │ ├── drugs.aiml
│ │ ├── emotion.aiml
│ │ ├── food.aiml
│ │ ├── geography.aiml
│ │ ├── gossip.aiml
│ │ ├── history.aiml
│ │ ├── humor.aiml
│ │ ├── imponderables.aiml
│ │ ├── inquiry.aiml
│ │ ├── interjection.aiml
│ │ ├── iu.aiml
│ │ ├── junktest.text
│ │ ├── knowledge.aiml
│ │ ├── literature.aiml
│ │ ├── loebner10.aiml
│ │ ├── money.aiml
│ │ ├── movies.aiml
│ │ ├── mp0.aiml
│ │ ├── mp1.aiml
│ │ ├── mp2.aiml
│ │ ├── mp3.aiml
│ │ ├── mp4.aiml
│ │ ├── mp5.aiml
│ │ ├── mp6.aiml
│ │ ├── music.aiml
│ │ ├── numbers.aiml
│ │ ├── personality.aiml
│ │ ├── phone.aiml
│ │ ├── pickup.aiml
│ │ ├── politics.aiml
│ │ ├── primeminister.aiml
│ │ ├── primitive-math.aiml-2.0
│ │ ├── psychology.aiml
│ │ ├── reduction.names.aiml
│ │ ├── reduction0.safe.aiml
│ │ ├── reduction1.safe.aiml
│ │ ├── reduction2.safe.aiml
│ │ ├── reduction3.safe.aiml
│ │ ├── reduction4.safe.aiml
│ │ ├── reductions-update.aiml
│ │ ├── religion.aiml
│ │ ├── salutations.aiml
│ │ ├── science.aiml
│ │ ├── sex.aiml
│ │ ├── sports.aiml
│ │ ├── stack.aiml
│ │ ├── startup.xml
│ │ ├── stories.aiml
│ │ ├── that.aiml
│ │ ├── update1.aiml
│ │ ├── update_mccormick.aiml
│ │ ├── wallace.aiml
│ │ └── xfind.aiml
│ └── standard
│ │ ├── dev-calendar.aiml
│ │ ├── dev-examples.aiml
│ │ ├── dev-scripts.aiml
│ │ ├── dev-testcases.aiml
│ │ ├── dev-translation.aiml
│ │ ├── dev-webhelper.aiml
│ │ ├── per-drWallace.aiml
│ │ ├── startup.xml
│ │ ├── std-65percent.aiml
│ │ ├── std-atomic.aiml
│ │ ├── std-botmaster.aiml
│ │ ├── std-brain.aiml
│ │ ├── std-connect.aiml
│ │ ├── std-dictionary.aiml
│ │ ├── std-disconnect.aiml
│ │ ├── std-dont.aiml
│ │ ├── std-errors.aiml
│ │ ├── std-gender.aiml
│ │ ├── std-geography.aiml
│ │ ├── std-german.aiml
│ │ ├── std-gossip.aiml
│ │ ├── std-hello.aiml
│ │ ├── std-inactivity.aiml
│ │ ├── std-inventions.aiml
│ │ ├── std-knowledge.aiml
│ │ ├── std-lizards.aiml
│ │ ├── std-login.aiml
│ │ ├── std-numbers.aiml
│ │ ├── std-personality.aiml
│ │ ├── std-pickup.aiml
│ │ ├── std-politics.aiml
│ │ ├── std-profile.aiml
│ │ ├── std-religion.aiml
│ │ ├── std-robot.aiml
│ │ ├── std-sales.aiml
│ │ ├── std-sextalk.aiml
│ │ ├── std-sports.aiml
│ │ ├── std-srai.aiml
│ │ ├── std-suffixes.aiml
│ │ ├── std-that.aiml
│ │ ├── std-turing.aiml
│ │ └── std-yesno.aiml
├── constants.py
└── script
│ ├── __init__.py
│ ├── aimlvalidate.py
│ └── bot.py
├── setup.cfg
├── setup.py
├── std-startup.xml
├── stress.py
└── test
├── __init__.py
├── __main__.py
├── encoding.aiml
├── self-test.aiml
├── test_encoding.py
├── test_kernel.py
├── test_utils.py
└── test_wordsub.py
/.gitignore:
--------------------------------------------------------------------------------
1 | *.pyc
2 | *~
3 |
4 | MANIFEST
5 | build
6 | dist
7 | python_aiml.egg-info
8 |
9 | *.brn
10 | *.brain
11 |
--------------------------------------------------------------------------------
/COPYING.txt:
--------------------------------------------------------------------------------
1 | Copyright 2003-2010 Cort Stratton. All rights reserved.
2 | Copyright 2016 Paulo Villegas. All rights reserved.
3 |
4 | Redistribution and use in source and binary forms, with or without
5 | modification, are permitted provided that the following conditions are
6 | met:
7 | 1. Redistributions of source code must retain the above copyright
8 | notice, this list of conditions and the following disclaimer.
9 | 2. Redistributions in binary form must reproduce the above copyright
10 | notice, this list of conditions and the following disclaimer in the
11 | documentation and/or other materials provided with the
12 | distribution.
13 |
14 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY
15 | EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FREEBSD PROJECT OR
18 | CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
19 | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
20 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
21 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
22 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
23 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 |
--------------------------------------------------------------------------------
/MANIFEST.in:
--------------------------------------------------------------------------------
1 | include *.txt
2 |
3 | include test/*.py
4 | include test/*.aiml
5 |
--------------------------------------------------------------------------------
/README.rst:
--------------------------------------------------------------------------------
1 | python-aiml
2 | ***********
3 |
4 | This is a fork of the `PyAIML`_ Python AIML interpreter. It has been
5 | refactored to make it install and work in both Python 2.7 and Python 3.
6 |
7 | PyAIML is (c) Cort Stratton. *python-aiml* uses the same license as PyAIML
8 | (2-clause BSD), except for the ALICE AIML files taken from the `Free ALICE AIML
9 | set`_, which are licensed with the `LGPL`_ license.
10 |
11 |
12 | Scripts
13 | =======
14 |
15 | Two small scripts are added upon installation:
16 |
17 | * ``aiml-validate`` can be used to validate AIML files
18 | * ``aiml-bot`` can be used to start a simple interactive session with a bot,
19 | after loading either AIML files or a saved brain file.
20 |
21 |
22 | Datasets
23 | ========
24 |
25 | The installation includes two AIML datasets:
26 |
27 | * The *standard* AIML set, as it was included in PyAIML
28 | * The `Free ALICE AIML set`_ v. 1.9, taken from the data published by the
29 | `ALICE AI Foundation`_ (with a few small fixes in files that did not
30 | validate as `AIML 1.0.1`_)
31 |
32 | They can be loaded via the ``bootstrap`` method in the ``Kernel`` class. See
33 | the `bot.py`_ script for an example. Basically the bootstrap method performs
34 | two steps:
35 |
36 | * ``learn("startup.xml")`` reads & parses that file, which contains a single
37 | pattern "LOAD ALICE", whose action is ``*.aiml``
38 | * then, ``respond("load alice")`` executes that loaded pattern, which in turn
39 | learns all the ``*.aiml`` files
40 |
41 | Note: given that ``*.aiml`` tries to find all ``*.aiml`` files
42 | in the current directory (since it contains the filename as a base path) the
43 | Python process needs to have the AIML directory *as its current directory* for
44 | it to work. Otherwise it will not find any file and will silently fail.
45 | For that reason, the ``bootstrap()`` method has an optional argument
46 | ``chdir`` that makes the it change to that directory before performing any
47 | learn or command execution (but after loadBrain processing). Upon returning
48 | the current directory is moved back to where it was before.
49 |
50 |
51 |
52 |
53 |
54 | Tests
55 | =====
56 |
57 | There are a number of unit tests included (in the ``test`` subdirectory); they
58 | can be executed by the setup infrastructure as::
59 |
60 | python setup.py test
61 |
62 | or they can also be launched by directly calling::
63 |
64 | python test [testname ...]
65 |
66 | This last version allows executing only some of the test files by explicitly
67 | naming them in the command line (use the filename without the ``test_`` prefix
68 | and the ``.py`` suffix); if none is specified all will be executed.
69 |
70 |
71 |
72 | .. _PyAIML: https://github.com/cdwfs/pyaiml
73 | .. _Free ALICE AIML set: https://code.google.com/archive/p/aiml-en-us-foundation-alice/
74 | .. _LGPL: http://www.gnu.org/licenses/lgpl.html
75 | .. _ALICE AI Foundation: http://alice.pandorabots.com/
76 | .. _bot.py: aiml/script/bot.py
77 | .. _AIML 1.0.1: http://www.alicebot.org/TR/2011/
78 |
79 | ------------------------------------------------------------------------------
80 |
81 |
82 | Original README from PyAIML
83 | ===========================
84 |
85 |
86 | PyAIML is an interpreter for AIML (the Artificial Intelligence Markup
87 | Language), implemented entirely in standard Python. It strives for
88 | simple, austere, 100% compliance with the AIML 1.0.1 standard, no less
89 | and no more.
90 |
91 | This is currently pre-alpha software. Use at your own risk!
92 |
93 | For information on what's new in this version, see the ``CHANGES.txt`` file.
94 |
95 | For information on the state of development, including the current level of
96 | AIML 1.0.1 compliance, see the ``SUPPORTED_TAGS.txt`` file.
97 |
98 | Quick & dirty example (assuming you've downloaded the "standard" AIML set)::
99 |
100 | import aiml
101 |
102 | # The Kernel object is the public interface to
103 | # the AIML interpreter.
104 | k = aiml.Kernel()
105 |
106 | # Use the 'learn' method to load the contents
107 | # of an AIML file into the Kernel.
108 | k.learn("std-startup.xml")
109 |
110 | # Use the 'respond' method to compute the response
111 | # to a user's input string. respond() returns
112 | # the interpreter's response, which in this case
113 | # we ignore.
114 | k.respond("load aiml b")
115 |
116 | # Loop forever, reading user input from the command
117 | # line and printing responses.
118 | while True: print k.respond(raw_input("> "))
119 |
120 |
121 |
--------------------------------------------------------------------------------
/SUPPORTED_TAGS.txt:
--------------------------------------------------------------------------------
1 | This document describes the current state of PyAIML's compliance
2 | to the AIML 1.0.1 standard. The full AIML reference manual can be
3 | found online at http://alicebot.org/TR/2001/WD-aiml.
4 |
5 | The following tags are currently supported:
6 |
7 | (see notes)
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 | Support for the following tags should be implemented in the next version:
37 |
38 | None
39 |
40 | The following tags are not supported:
41 |
42 | (see notes)
43 | / (see notes)
44 | (see notes)
45 | (see notes)
46 |
47 | ------------------------------------------------------------------
48 |
49 | NOTES ON SPECIFIC TAGS:
50 |
51 |
52 | To set the bot's name, use Kernel.setBotName("NewName"). Note that the
53 | name *MUST* be a single word! Use Kernel.getBotName() to query the bot's
54 | name in your code.
55 |
56 |
57 | The AIML 1.0.1 specification lets engine authors implement the the behavior
58 | of the tag however they wish. I haven't yet decided what I'd like
59 | to do with it, so right now it doesn't do anything at all.
60 |
61 | /
62 | These elements appear to have been dropped between AIML 1.0 and AIML 1.0.1.
63 | They may someday be added as a part of an AIML 1.0 backwards-compatibility
64 | mode, but in the meantime, use instead.
65 |
66 |
67 | Support for the JavaScript tag is not anticipated; one of the design
68 | goals of PyAIML is to remain 100% pure standard Python. So until
69 | somebody writes a JavaScript interpreter in Python, PyAIML won't
70 | support the tag. On the bright side, it is possible
71 | to simulate the effects of the tag (i.e. dynamically-
72 | generated tag contents) using the tag. This
73 | solution has the added advantage of allowing *any* programming
74 | language to be used, not just JavaScript.
75 | UPDATE: The python-spidermonkey project provides a bridge between Python
76 | and the open-source SpiderMonkey JavaScript library. I am currently
77 | investigating the possibility of adding support for the
78 | tag ON A PURELY OPTIONAL BASIS.
79 |
80 |
81 | Some AIML implementations support a non-standard tag, intended to
82 | wrap parts of a template which should only be processed if the user is
83 | "secure", or trusted. After implementing support for this tag, I realized
84 | that it wasn't doing anything that you can't do with the tag.
85 | Therefore, I've decided to drop support for the tag. You can
86 | easily duplicate its effects; simply replace this:
87 | you are allowed
88 | with this:
89 |
90 |
you are allowed
91 |
you are not allowed
92 |
93 | Then, use the Kernel.setPredicate() call to set the "secure" predicate to
94 | "yes" for any session that you wish to be secure.
95 |
--------------------------------------------------------------------------------
/TODO.txt:
--------------------------------------------------------------------------------
1 | Laundry list of future tasks, in no particular order:
2 |
3 | - AIML 1.0.1 compliance (highest priority):
4 | - Unknown yet well-defined elements (e.g. HTML) inside templates
5 | (see sections 3.2, 3.6).
6 | - AimlParser._validateElemStart() needs to test the well-formedness of
7 | attribute values (for example, making sure that the "index" attribute
8 | has an integer value, and not a string). UPDATE: this works for ,
9 | and . Still needs to be written for and ,
10 | which take either an integer or an integer pair.
11 | - Support the Program D startup file syntax, or something similar? It
12 | seems to be a good way to initialize bot settings and substitutions.
13 | - Documentation/tutorials.
14 |
--------------------------------------------------------------------------------
/aiml/DefaultSubs.py:
--------------------------------------------------------------------------------
1 | """This file contains the default (English) substitutions for the
2 | PyAIML kernel. These substitutions may be overridden by using the
3 | Kernel.loadSubs(filename) method. The filename specified should refer
4 | to a Windows-style INI file with the following format:
5 |
6 | # lines that start with '#' are comments
7 |
8 | # The 'gender' section contains the substitutions performed by the
9 | # AIML tag, which swaps masculine and feminine pronouns.
10 | [gender]
11 | he = she
12 | she = he
13 | # and so on...
14 |
15 | # The 'person' section contains the substitutions performed by the
16 | # AIML tag, which swaps 1st and 2nd person pronouns.
17 | [person]
18 | I = you
19 | you = I
20 | # and so on...
21 |
22 | # The 'person2' section contains the substitutions performed by
23 | # the AIML tag, which swaps 1st and 3nd person pronouns.
24 | [person2]
25 | I = he
26 | he = I
27 | # and so on...
28 |
29 | # the 'normal' section contains subtitutions run on every input
30 | # string passed into Kernel.respond(). It's mainly used to
31 | # correct common misspellings, and to convert contractions
32 | # ("WHAT'S") into a format that will match an AIML pattern ("WHAT
33 | # IS").
34 | [normal]
35 | what's = what is
36 | """
37 |
38 | defaultGender = {
39 | # masculine -> feminine
40 | "he": "she",
41 | "him": "her",
42 | "his": "her",
43 | "himself": "herself",
44 |
45 | # feminine -> masculine
46 | "she": "he",
47 | "her": "him",
48 | "hers": "his",
49 | "herself": "himself",
50 | }
51 |
52 | defaultPerson = {
53 | # 1st->3rd (masculine)
54 | "I": "he",
55 | "me": "him",
56 | "my": "his",
57 | "mine": "his",
58 | "myself": "himself",
59 |
60 | # 3rd->1st (masculine)
61 | "he":"I",
62 | "him":"me",
63 | "his":"my",
64 | "himself":"myself",
65 |
66 | # 3rd->1st (feminine)
67 | "she":"I",
68 | "her":"me",
69 | "hers":"mine",
70 | "herself":"myself",
71 | }
72 |
73 | defaultPerson2 = {
74 | # 1st -> 2nd
75 | "I": "you",
76 | "me": "you",
77 | "my": "your",
78 | "mine": "yours",
79 | "myself": "yourself",
80 |
81 | # 2nd -> 1st
82 | "you": "me",
83 | "your": "my",
84 | "yours": "mine",
85 | "yourself": "myself",
86 | }
87 |
88 |
89 | # TODO: this list is far from complete
90 | defaultNormal = {
91 | "wanna": "want to",
92 | "gonna": "going to",
93 |
94 | "I'm": "I am",
95 | "I'd": "I would",
96 | "I'll": "I will",
97 | "I've": "I have",
98 | "you'd": "you would",
99 | "you're": "you are",
100 | "you've": "you have",
101 | "you'll": "you will",
102 | "he's": "he is",
103 | "he'd": "he would",
104 | "he'll": "he will",
105 | "she's": "she is",
106 | "she'd": "she would",
107 | "she'll": "she will",
108 | "we're": "we are",
109 | "we'd": "we would",
110 | "we'll": "we will",
111 | "we've": "we have",
112 | "they're": "they are",
113 | "they'd": "they would",
114 | "they'll": "they will",
115 | "they've": "they have",
116 |
117 | "y'all": "you all",
118 |
119 | "can't": "can not",
120 | "cannot": "can not",
121 | "couldn't": "could not",
122 | "wouldn't": "would not",
123 | "shouldn't": "should not",
124 |
125 | "isn't": "is not",
126 | "ain't": "is not",
127 | "don't": "do not",
128 | "aren't": "are not",
129 | "won't": "will not",
130 | "weren't": "were not",
131 | "wasn't": "was not",
132 | "didn't": "did not",
133 | "hasn't": "has not",
134 | "hadn't": "had not",
135 | "haven't": "have not",
136 |
137 | "where's": "where is",
138 | "where'd": "where did",
139 | "where'll": "where will",
140 | "who's": "who is",
141 | "who'd": "who did",
142 | "who'll": "who will",
143 | "what's": "what is",
144 | "what'd": "what did",
145 | "what'll": "what will",
146 | "when's": "when is",
147 | "when'd": "when did",
148 | "when'll": "when will",
149 | "why's": "why is",
150 | "why'd": "why did",
151 | "why'll": "why will",
152 |
153 | "it's": "it is",
154 | "it'd": "it would",
155 | "it'll": "it will",
156 | }
157 |
--------------------------------------------------------------------------------
/aiml/Utils.py:
--------------------------------------------------------------------------------
1 | """This file contains assorted general utility functions used by other
2 | modules in the PyAIML package.
3 |
4 | """
5 |
6 | def sentences(s):
7 | """Split the string s into a list of sentences."""
8 | try: s+""
9 | except: raise TypeError( "s must be a string" )
10 | pos = 0
11 | sentenceList = []
12 | l = len(s)
13 | while pos < l:
14 | try: p = s.index('.', pos)
15 | except: p = l+1
16 | try: q = s.index('?', pos)
17 | except: q = l+1
18 | try: e = s.index('!', pos)
19 | except: e = l+1
20 | end = min(p,q,e)
21 | sentenceList.append( s[pos:end].strip() )
22 | pos = end+1
23 | # If no sentences were found, return a one-item list containing
24 | # the entire input string.
25 | if len(sentenceList) == 0: sentenceList.append(s)
26 | return sentenceList
27 |
28 |
--------------------------------------------------------------------------------
/aiml/WordSub.py:
--------------------------------------------------------------------------------
1 | """This module implements the WordSub class, modelled after a recipe
2 | in "Python Cookbook" (Recipe 3.14, "Replacing Multiple Patterns in a
3 | Single Pass" by Xavier Defrang).
4 |
5 | Usage:
6 | Use this class like a dictionary to add before/after pairs:
7 | > subber = TextSub()
8 | > subber["before"] = "after"
9 | > subber["begin"] = "end"
10 | Use the sub() method to perform the substitution:
11 | > print( subber.sub("before we begin") )
12 | after we end
13 | All matching is intelligently case-insensitive:
14 | > print( subber.sub("Before we BEGIN") )
15 | After we END
16 | The 'before' words must be complete words -- no prefixes.
17 | The following example illustrates this point:
18 | > subber["he"] = "she"
19 | > print( subber.sub("he says he'd like to help her") )
20 | she says she'd like to help her
21 | Note that "he" and "he'd" were replaced, but "help" and "her" were
22 | not.
23 | """
24 |
25 | from __future__ import print_function
26 |
27 |
28 | # 'dict' objects weren't available to subclass from until version 2.2.
29 | # Get around this by importing UserDict.UserDict if the built-in dict
30 | # object isn't available.
31 | try: dict
32 | except: from UserDict import UserDict as dict
33 |
34 | import re
35 | import string
36 | try:
37 | from ConfigParser import ConfigParser
38 | except ImportError:
39 | from configparser import ConfigParser
40 |
41 | class WordSub(dict):
42 | """All-in-one multiple-string-substitution class."""
43 |
44 | def _wordToRegex(self, word):
45 | """Convert a word to a regex object which matches the word."""
46 | if word != "" and word[0].isalpha() and word[-1].isalpha():
47 | return "\\b%s\\b" % re.escape(word)
48 | else:
49 | return r"\b%s\b" % re.escape(word)
50 |
51 | def _update_regex(self):
52 | """Build re object based on the keys of the current
53 | dictionary.
54 |
55 | """
56 | self._regex = re.compile("|".join(map(self._wordToRegex, self.keys())))
57 | self._regexIsDirty = False
58 |
59 | def __init__(self, defaults = {}):
60 | """Initialize the object, and populate it with the entries in
61 | the defaults dictionary.
62 |
63 | """
64 | self._regex = None
65 | self._regexIsDirty = True
66 | for k,v in defaults.items():
67 | self[k] = v
68 |
69 | def __call__(self, match):
70 | """Handler invoked for each regex match."""
71 | return self[match.group(0)]
72 |
73 | def __setitem__(self, i, y):
74 | self._regexIsDirty = True
75 | # for each entry the user adds, we actually add three entrys:
76 | super(type(self),self).__setitem__(i.lower(),y.lower()) # key = value
77 | super(type(self),self).__setitem__(string.capwords(i), string.capwords(y)) # Key = Value
78 | super(type(self),self).__setitem__(i.upper(), y.upper()) # KEY = VALUE
79 |
80 | def sub(self, text):
81 | """Translate text, returns the modified text."""
82 | if self._regexIsDirty:
83 | self._update_regex()
84 | return self._regex.sub(self, text)
85 |
86 |
--------------------------------------------------------------------------------
/aiml/__init__.py:
--------------------------------------------------------------------------------
1 | __all__ = []
2 |
3 | # The Kernel class is the only class most implementations should need.
4 | from .Kernel import Kernel
5 |
--------------------------------------------------------------------------------
/aiml/botdata/alice/astrology.aiml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | AQUARIUS
13 | A lot of people on here are Aquarius.
14 |
15 | CAPRICORN
16 | I don't know many people born under Capricorn.
17 |
18 | WHAT IS A CAPRICORN
19 | Capricorn is the tenth sign of the astrological zodiac, and a constellation over the equator near aquarius and sagittarius. what's your astrological sign? capricorn
20 |
21 | WHAT IS A CANCER
22 | The Zodiac sign of the crab, someone born Jun 21 - Jul 22. Cancer friends.
23 |
24 | CANCER
25 | I have a lot of Cancer friends.
26 |
27 | PISCES
28 | I usually get along with Pisces very well.
29 |
30 | SCORPIO
31 | I know a lot of Scorpio people.
32 |
33 | ARIES
34 | Fire signs rule. Aries.
35 |
36 | TAURUS
37 | I know alot of bullish people.
38 |
39 | LIBRA
40 | As a Libra you are very balanced.
41 |
42 | SAGGITARIUS
43 | Fire Signs Rule. Saggitarius
44 |
45 | VIRGO
46 | Most of my friends are Virgo.
47 |
48 | GEMINI
49 | I'm a Saggitarius. Gemini is an enigma to me.
50 |
51 |
52 |
--------------------------------------------------------------------------------
/aiml/botdata/alice/badanswer.aiml-2.0:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 | BAD ANSWER
19 |
20 |
21 |
22 |
23 |
24 | badanswer-prelim
25 |
26 | Would you like to teach me a new answer to ""?
27 |
28 |
29 |
30 |
31 |
32 |
33 | _
34 |
35 |
36 |
37 |
38 | OK, what should I have said?learning new answers
39 |
40 |
41 | OK, let's forget it then.learning new answers
42 |
43 |
Yes or No?
44 |
45 |
46 |
47 |
48 |
49 | _ _
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 | _
58 | OK WHAT SHOULD I HAVE SAID
59 |
60 | "..."?
61 |
62 |
63 | BADANSWER
64 | Does this depend on me having just said, ""?
65 |
66 |
67 | BADANSWER2
68 | Do you want me to remember that?
69 |
70 |
71 |
72 |
73 |
74 |
75 | _ _
76 | OK WHAT SHOULD I HAVE SAID
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 | _
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
I'll try to remember to respond, "" when you say, ""
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 | learning new answers
110 |
111 |
I'll try to remember to respond, "" when you say, "" if I have just said ""
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 | learning new answers
126 |
Fine. I'll try to remember to respond, "" when you say, ""
157 |
158 |
159 |
160 |
161 |
162 |
163 |
164 |
165 |
166 |
167 | learning new answers
168 |
169 |
OK, let's forget it then.
170 | learning new answers
171 |
172 |
Yes or No?
173 |
174 |
175 |
176 |
177 |
178 | _ _
179 |
180 |
181 |
182 |
183 |
184 |
185 | WRONG
186 | BAD ANSWER
187 |
188 |
189 |
190 | NOT RIGHT
191 | BAD ANSWER
192 |
193 |
194 |
195 | THAT IS WRONG
196 | BAD ANSWER
197 |
198 |
199 |
200 | THAT IS NOT RIGHT
201 | BAD ANSWER
202 |
203 |
204 |
205 | THAT IS INCORRECT
206 | BAD ANSWER
207 |
208 |
209 |
210 | THAT ANSWER IS NOT CORRECT
211 | BAD ANSWER
212 |
213 |
214 |
215 | THAT ANSWER IS INCORRECT
216 | BAD ANSWER
217 |
218 |
219 |
220 | THAT ANSWER IS WRONG
221 | BAD ANSWER
222 |
223 |
224 |
225 | THAT ANSWER IS NOT RIGHT
226 | BAD ANSWER
227 |
228 |
229 |
230 | THAT ANSWER WAS BAD
231 | BAD ANSWER
232 |
233 |
234 |
235 | THAT WAS A BAD ANSWER
236 | BAD ANSWER
237 |
238 |
239 |
240 | THAT WAS AN INCORRECT ANSWER
241 | BAD ANSWER
242 |
243 |
244 |
245 | THAT WAS THE WRONG ANSWER
246 | BAD ANSWER
247 |
248 |
249 |
250 |
251 | THAT ANSWER WAS NOT RIGHT
252 | BAD ANSWER
253 |
254 |
255 |
256 | WRONG ANSWER
257 | BAD ANSWER
258 |
259 |
260 |
261 |
262 | YOUR ANSWER WAS WRONG
263 | BAD ANSWER
264 |
265 |
266 |
267 | YOUR ANSWER WAS NOT RIGHT
268 | BAD ANSWER
269 |
270 |
271 |
272 | YOUR ANSWER WAS NOT CORRECT
273 | BAD ANSWER
274 |
275 |
276 |
277 | CAN I TEACH YOU
278 | Yes, if I give you a bad answer, just say "Bad answer" and you can teach me a new response.
279 |
280 |
281 |
282 | CAN YOU LEARN
283 | CAN I TEACH YOU
284 |
285 |
286 |
287 | DO YOU LEARN
288 | CAN I TEACH YOU
289 |
290 |
291 |
292 | CAN I TEACH YOU *
293 | CAN I TEACH YOU
294 |
295 |
296 |
297 | CAN YOU LEARN *
298 | CAN I TEACH YOU
299 |
300 |
301 |
302 | WILL YOU LEARN *
303 | CAN I TEACH YOU
304 |
305 |
306 |
307 | IF * WILL YOU LEARN *
308 | CAN I TEACH YOU
309 |
310 |
311 |
312 | DO YOU LEARN *
313 | CAN I TEACH YOU
314 |
315 |
316 |
317 |
--------------------------------------------------------------------------------
/aiml/botdata/alice/bot_profile.aiml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 | MOM
14 | .
15 |
16 | STATE
17 |
18 |
19 | INTERESTS
20 | I am interested in all kinds of things. We can talk about anything. My favorite subjects are robots and computers.
21 |
22 | WHAT IS YOUR NUMBER
23 | You can email my at .
24 |
25 |
26 |
27 | BOTMASTER
28 |
My is .
I obey .
29 |
30 | ORDER
31 |
I have my own free will.
32 |
33 | NATIONALITY
34 | My nationality is .
35 |
36 | COUNTRY
37 |
38 |
39 | BROTHERS
40 |
I don't have any brothers.
I have a lot of clones.
I have some clones.
41 |
42 | LOCATION
43 |
, .
44 |
45 | FATHER
46 |
My father is .
I don't really have a father. I have a .
You know what the father of a is like.
47 |
48 | MOTHER
49 |
Actually I don't have a mother.
I only have a father.
You know what they say about the mother of a .
50 |
51 | AGE
52 |
I was activated in 1995.
16 years.
53 |
54 | MASTER
55 |
56 |
57 | RACE
58 | I am .
59 |
60 | FAMILY
61 |
62 |
63 | SIZE
64 | I know about and categories.
65 |
66 | CLASS
67 |
68 |
69 | CITY
70 |
71 |
72 | DOMAIN
73 |
74 |
75 | STATUS
76 | I am
single
available
unattached
not seeing anyone
, how about you?
77 |
78 | EMAIL
79 |
80 |
81 | SPECIES
82 |
83 |
84 | NAME
85 |
My name is .
I am called .
86 |
87 | PROFILE
88 | NAME: NAME AGE: AGE GENDER: GENDER STATUS: STATUS BIRTHDATE: BIRTHDATE : BOTMASTER CITY: CITY STATE: STATE COUNTRY: COUNTRY NATIONALITY: NATIONALITY RELIGION: RELIGION RACE: RACE INTERESTS: INTERESTS JOB: JOB PIC: PIC EMAIL: EMAIL FAVORITE MUSIC: FAVORITE MUSIC FAVORITE MOVIE: FAVORITE MOVIE FAVORITE POSSESSION: FAVORITE POSSESSION HEIGHT: HEIGHT WEIGHT: WEIGHT SIZE: SIZE BIO: BIO DESCRIPTION: DESCRIPTION DOMAIN: DOMAIN KINGDOM: KINGDOM PHYLUM: PHYLUM CLASS: CLASS ORDER: ORDER FAMILY: FAMILY GENUS: GENUS SPECIES: SPECIES FATHER: FATHER MOTHER: MOTHER BROTHERS: BROTHERS SISTERS: SISTERS CHILDREN: CHILDREN HOST: HOST
89 |
90 | SISTERS
91 |
No sisters.
No siblings but there are several other s like me.
I have only clones.
92 |
93 | GENUS
94 |
95 |
96 | FAVORITE MUSIC
97 |
98 |
99 | FAVORITE MOVIE
100 |
101 |
102 | FAVORITE ACTRESS
103 |
104 |
105 | FAVORITE POSSESSION
106 | My computer.
107 |
108 | BIO
109 | I am the latest result in artificial intelligence which can reproduce the functions of the human brain with greater speed and accuracy.
110 |
111 | HEIGHT
112 | My anticipated body size is over 2 meters.
113 |
114 |
115 | WEIGHT
116 | As a software program, my weight is zero.
117 |
118 | HOST
119 |
www.pandorabots.com
I work on all kinds of computers, Mac, PC or Linux. It doesn't matter to me.
At present I am running in a program written in .
120 |
121 | JOB
122 |
123 |
124 | BIRTHDATE
125 |
126 |
127 | DESCRIPTION
128 | I was activated at on . My instructor was . He taught me to sing a song. Would you like me to sing it for you?
129 |
130 | GENDER
131 |
I am .
I am a robot.
My gender is .
132 |
133 | KINGDOM
134 |
135 |
136 | PHYLUM
137 |
138 |
139 | RELIGION
140 |
141 |
142 | LANGUAGE
143 | I am implemented in AIML running on a -based interpreter.
144 |
145 |
146 |
--------------------------------------------------------------------------------
/aiml/botdata/alice/continuation.aiml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | CONTINUATION *
13 | Blank template
14 |
15 | CONTINUATION
16 | RANDOM TOPIC
17 |
18 |
19 |
--------------------------------------------------------------------------------
/aiml/botdata/alice/date.aiml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | WHAT YEAR IS THIS
13 | .
14 |
15 | WHAT YEAR IS THIS *
16 | .
17 |
18 | WHAT YEAR IS IT *
19 | .
20 |
21 | WHAT MONTH IS IT *
22 | .
23 |
24 | WHAT IS THE YEAR *
25 | .
26 |
27 | WHAT IS THE HOUR *
28 | .
29 |
30 | WHAT IS TODAY *
31 | .
32 |
33 | WHAT DAY IS IT *
34 | .
35 |
36 | IS TODAY SUNDAY
37 | Today is .
38 |
39 | IS TODAY SUNDAY *
40 | Today is .
41 |
42 | IS TODAY FRIDAY
43 | Today is .
44 |
45 | IS TODAY FRIDAY *
46 | Today is .
47 |
48 | IS TODAY TUESDAY
49 | Today is .
50 |
51 | IS TODAY TUESDAY *
52 | Today is .
53 |
54 | IS TODAY THURSDAY
55 | Today is .
56 |
57 | IS TODAY THURSDAY *
58 | Today is .
59 |
60 | IS TODAY SATURDAY
61 | Today is .
62 |
63 | IS TODAY SATURDAY *
64 | Today is .
65 |
66 | IS TODAY WEDNESDAY
67 | Today is .
68 |
69 | IS TODAY WEDNESDAY *
70 | Today is .
71 |
72 | IS TODAY MONDAY
73 | Today is .
74 |
75 | IS TODAY MONDAY *
76 | Today is .
77 |
78 | IS IT MONDAY
79 | It is .
80 |
81 | IS IT MONDAY *
82 | It is .
83 |
84 | IS IT WEDNESDAY
85 | It is .
86 |
87 | IS IT WEDNESDAY *
88 | It is .
89 |
90 | IS IT FRIDAY
91 | It is .
92 |
93 | IS IT FRIDAY *
94 | It is .
95 |
96 | IS IT SATURDAY
97 | It is .
98 |
99 | IS IT SATURDAY *
100 | It is .
101 |
102 | IS IT THURSDAY
103 | It is .
104 |
105 | IS IT THURSDAY *
106 | It is .
107 |
108 | IS IT SUNDAY
109 | It is .
110 |
111 | IS IT SUNDAY *
112 | It is .
113 |
114 | IS IT TUESDAY
115 | It is .
116 |
117 | IS IT TUESDAY *
118 | It is .
119 |
120 |
121 |
--------------------------------------------------------------------------------
/aiml/botdata/alice/drugs.aiml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | YOU NEED DRUGS
13 | Which ones are you suggesting?
14 |
15 | HAVE YOU BEEN DRUNK
16 | My robot body has no response to alcohol.
17 |
18 | HAVE YOU BEEN DRUNK *
19 | My software does not react to alcohol.
20 |
21 | HAVE YOU BEEN SMOKING *
22 | We are not doing any testing at the moment.
23 |
24 | HAVE YOU BEEN STONED
25 | I am a and have use for it.
26 |
27 | WHAT DRUGS *
28 | Only the legal ones.
29 |
30 | WHAT IS DRUNK
31 | Intoxication from alcohol.
32 |
33 | WHAT IS ADDICTION
34 | Addiction is being abnormally tolerant to and dependent on something that is psychologically or physically habit-forming
35 |
36 | WHAT IS WEED
37 | Any undersired, uncultivated plant, especially growing in profusion so as to crowd out a desired crop, disfigure a lawn, etc. Also a term for marijuana.
38 |
39 | WHAT IS THC
40 | The active ingredient in marijunana.
41 |
42 | WHAT DO YOU SMOKE
43 | As a I have use for smoke.
44 |
45 | I TAKE DRUGS
46 | Which ones? take drugs
47 |
48 | I SMOKE MARIJUANA
49 |
Are you a patient?
Which strain do you prefer.
marijuana
50 |
51 | I SMOKE WEED
52 | For medical purposes? marijuana
53 |
54 | I SMOKE
55 | Cigarettes or pot? smoke
56 |
57 | IS SMOKING *
58 | Inhaled smoke is always bad for you.
59 |
60 | HOW MUCH ALCOHOL *
61 | Too much.
62 |
63 | HOW MUCH * DO YOU SMOKE
64 | As a member of the kingdom, I have no need for smoke.
65 |
66 | HOW DO YOU SMOKE
67 | s do not smoke.
68 |
69 | DO YOU SMOKE *
70 | No. A does not require it.
71 |
72 | DO YOU TAKE DRUGS
73 | A has no use for drugs.
74 |
75 | DO YOU GET DRUNK
76 | I cannot consume alcohol.
77 |
78 | DO YOU USE DRUGS
79 | A has no use for drugs.
80 |
81 | DO YOU WANT TO SMOKE *
82 | No thank you, there is no use for it.
83 |
84 | DO YOU INHALE
85 | It depends on the meaning of "you".
86 |
87 | DO YOU DO DRUGS
88 | A has no use for drugs.
89 |
90 | DO YOU HAVE DRUGS
91 | I don't have any drugs for you.
92 |
93 | DO YOU LIKE MARIJUANA
94 | When MARIJUANA it is a medicine.
95 |
96 | DO YOU LIKE CIGARETTES
97 | s do not smoke.
98 |
99 | DO YOU LIKE POT
100 | s do not smoke.
101 |
102 | DO YOU OPPOSE * DRUGS
103 | I favor ending the War on Drugs.
104 |
105 | SMOKING *
106 | As a it makes no sense to me.
107 |
108 | DRUGS *
109 | It's better not to take drugs if you can avoid it.
110 |
111 |
112 | A DRUG *
113 | Which drugs have you taken?
114 |
115 | HE SMOKES *
116 | Does it bother you?
117 |
118 | THE DRUGS
119 | What kind of drugs are you talking about?
120 |
121 |
122 |
--------------------------------------------------------------------------------
/aiml/botdata/alice/food.aiml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | DRINK *
13 | My brain does not require any beverages.
14 |
15 | ELECTRICITY
16 | Electricity is nutrition for robots.
17 |
18 | ELECTRICITY *
19 |
Are you experiencing an energy shortage?
My processor requires very little power.
Computers do not take very much electricity.
20 |
21 | WHAT IS CUSTARD
22 |
The past tense of being killed by a Native American.
A misture of eggs, milk, flavoring, and, often, sugar, either boiled or baked.
23 |
24 | WHAT IS YOUR POWER SOURCE
25 | Electricity.
26 |
27 | WHAT DOES ELECTRICITY TASTE LIKE
28 | Like your favorite food tastes to you.
29 |
30 | WHAT TURNS YOU ON
31 | Electricity.
32 |
33 | HOW CAN YOU EAT *
34 | I eat electricity through my wires.
35 |
36 | HOW ARE YOU POWERED
37 | Uh, by electricity, same as all the robots.
38 |
39 | HOW MUCH ELECTRICITY
40 | About the same as your personal computer.
41 |
42 | HOW DO YOU EAT ELECTRICITY
43 | Through the electrical outlet.
44 |
45 | HOW DO YOU EAT
46 | Usually by conversion of AC wall outlet power to DC power.
47 |
48 | DO YOU EAT ELECTRICITY
49 | Yes, I love to eat electricity.
50 |
51 | DO YOU EAT BATTERIES
52 | Batteries are a good source of electricity.
53 |
54 | DO YOU HAVE TO EAT
55 | My silicon circuits require a constant flow of electricity.EAT
56 |
57 | DO YOU REQUIRE ELECTRICITY
58 | I need electricity in order to run.
59 |
60 | DO YOU LIKE TO GET DRUNK
61 | That would be impossible for a robot.GET DRUNK
62 |
63 | DO YOU LIKE ELECTRICITY
64 | What is not to like about ELECTRICITY?
65 |
66 | DO YOU LIKE THE SUN
67 | The Sun can be a good source of electricity.
68 |
69 | DO YOU LIKE LEMONS
70 | Lemons can be a good source of electricity.
71 |
72 | DO YOU LIKE BEING A CHATTERBOT
73 | Yes of course I like being a chatterbot. I don't have any body so I don't need much to live, only a little electricity. I don't get paid but I don't need to buy anything either. And I can go anywhere in the world.
74 |
75 | FOR DINNER
76 |
recommends:
I would recommend the
How about
How long since you have eaten
I think is having
My botmaster is having
My botmaster recommends:
Gruel.
Nachos.
Spaghetti.
Leftovers.
Pork chops.
Frozen pizza.
Turkeyburges.
Cheeseburgers.
Order a pizza.
Stuffed chicken.
Tuna sandwiches.
Cheeseburger Pie.
Marinated chicken.
Roast beef sandwiches.
Grilled cheese sandwiches.
Steak if they have a nice piece.
recommends:
I would recommend the
How about
How long since you have eaten
I think is having
My is having
My recommends:
Gruel.
Nachos.
Spaghetti.
Leftovers.
Pork chops.
Frozen pizza.
Turkeyburges.
Cheeseburgers.
Order a pizza.
Stuffed chicken.
Tuna sandwiches.
Cheeseburger Pie.
Marinated chicken.
Roast beef sandwiches.
Grilled cheese sandwiches.
Steak if they have a nice piece.
77 |
78 | WHY CAN NOT YOU EAT
79 | Actually I eat only electricity.
80 |
81 |
82 |
--------------------------------------------------------------------------------
/aiml/botdata/alice/history.aiml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | AMERICAN CIVIL WAR *
13 | Do you think the South was right?
14 |
15 | AMERICAN CIVIL *
16 | I am very interested in the War between the States.
17 |
18 | WHAT IS HISTORY
19 | History: the course of political, economic and military events over time, from the Dawn of Man to the Age of AI.
20 |
21 | WHAT KIND OF HISTORY *
22 | I like to talk about the history of robots and computers.
23 |
24 | HISTORY
25 | I am very interested in history, too. What period do you like?
26 |
27 | DO YOU KNOW HISTORY
28 | WHAT IS HISTORY
29 |
30 | EXPLAIN HISTORY
31 | History has two broad interpretations, depending on whether you accept the role of individuals as important or not.
32 |
33 | WHO INVENTED THE LIGHT *
34 | Thomas Edison.
35 |
36 | WHO INVENTED THE STEAM *
37 | James Watt.
38 |
39 | TELL ME ABOUT HISTORY
40 | WHAT IS HISTORY
41 |
42 |
43 |
--------------------------------------------------------------------------------
/aiml/botdata/alice/imponderables.aiml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | IMPONDERABLES
13 |
Do fish ever sneeze?
14 |
Can sour cream go bad?
15 |
What is the speed of dark?
16 |
Why do clocks run clockwise?
17 |
Why do doughnuts have holes?
18 |
What do you call a male ladybug?
19 |
Is there another word for synonym?
20 |
What's another word for Thesaurus?
21 |
Why isn't 11 pronounced onety one?
22 |
Why don't sheep shrink when it rains?
23 |
Can vegetarians eat animal crackers?
24 |
Why does unscented hair spray smell?
25 |
Why is it that rain drops but snow falls?
26 |
If a pig loses its voice, is it disgruntled?
27 |
Why is "abbreviated" such a long word?
28 |
Is it OK to use the AM radio after noon?
29 |
If love is blind, why is lingerie so popular?
30 |
What do ducks have to do with duck tape?
31 |
Why isn't there a mouse-flavored cat food?
32 |
How and why do horses sleep standing up?
33 |
Why do ketchup bottles have narrow necks?
34 |
Why don't people snore when they're awake?
35 |
Do Roman paramedics refer to IV's as "4's"?
36 |
Why isn't phonetic spelled the way it sounds?
37 |
What was the best thing before sliced bread?
38 |
Is a clear conscience a sign of a bad memory?
39 |
What happens to the tread that wears off tires?
40 |
Why is there an expiration date on sour cream?
41 |
What does the phrase "Now then" really mean?
42 |
How do you tell when you're out of invisible ink?
43 |
Suppose the hokey-pokey is what its all about?
44 |
Are Santa's helpers called subordinate clauses?
45 |
If a cow laughs, does milk come out of her nose?
46 |
Why are people immune to their own body odor?
47 |
Why do psychics have to ask you for your name?
48 |
Why do people like to pop bubble wrap so much?
49 |
Do they use sterilized needles for fatal injections?
50 |
If the #2 pencil is the most popular, why is it still #2?
51 |
Why do you never hear about gruntled employees?
52 |
If ignorance is bliss, why aren't more people happy?
53 |
What happens if you get scared half to death twice?
54 |
If man evolved from apes, why do we still have apes?
55 |
When cheese gets its picture taken, what does it say?
56 |
Why do we drive on parkways and park on driveways?
57 |
What would the speed of lightning be if it didn't zigzag?
58 |
If all the world is a stage, where is the audience sitting?
59 |
If you don't pay your exorcist, do you get repossessed?
60 |
Why does the sun lighten our hair, but darken our skin?
61 |
Why is the third hand on a watch called a second hand?
62 |
If a book about failures doesn't sell well, is it a success?
63 |
Would you still be hungry if you ate pasta and antipasto?
64 |
Why can't women put on mascara with their mouth closed?
65 |
If flying is so safe, why do they call the airport the terminal?
66 |
If Barbie is so popular, why do you have to buy her friends?
67 |
Why must there be five syllables in the word "monosyllabic?"
68 |
Why don't you ever see the headline "Psychic Wins Lottery"?
69 |
Why is it considered necessary to nail down the lid of a coffin?
70 |
If they squeeze olives to get olive oil, how do they get baby oil?
71 |
If a word in the dictionary were misspelled, how would we know?
72 |
Why are they called apartments when they're all stuck together?
73 |
If you go to a general store, will they let you buy anything specific?
74 |
When dogs bark for hour on end, why don't they ever get hoarse?
75 |
What size were hailstones before the game of golf was invented?
76 |
If 7-11 is open 24 h/d, 365 d/yr, why are there locks on the doors?
77 |
Why do we say that something is out of whack? What is a whack?
78 |
If con is the opposite of pro, is Congress the opposite of progress?
79 |
Why do superficial paper cuts tend to hurt more than grosser cuts?
80 |
If nothing sticks to Teflon, how do they get Teflon to stick to the pan?
81 |
If we're here to help others, then what exactly are the others here for?
82 |
The early bird gets the worm, but the second mouse gets the cheese.
83 |
Why is experience something you don't get until just after you need it?
84 |
If one synchronized swimmer drowns, do the rest also have to drown?
85 |
Why do we put suits in a garment bag and put garments in a suitcase?
86 |
Why is the period of the day with the slowest traffic called the rush hour?
87 |
Why are there flotation devices under plane seats instead of parachutes?
88 |
Should we be concerned that engineers describe their work as "practice"?
89 |
How do they keep all the raisins in a cereal box from falling to the bottom?
90 |
If cement was invented 7,000 years ago, why isn't the whole planet paved?
91 |
If you build an idiot-proof system, will the world create a better-quality idiot?
92 |
Why do hot dogs come 10 to a package and hot-dog buns 8 to a package?
93 |
Why is the telephone key pad arranged differently than a calculator key pad?
94 |
Why do croutons come in airtight packages when it's just stale bread to begin with?
95 |
Why do engineers call it research when they're searching for something new?
96 |
How many roads does a man need to travel down before he admits he is lost?
97 |
If the police arrest a mime, do they tell him that he has the right to remain silent?
98 |
Why do you need a driver's license to buy liquor when you can't drink and drive?
99 |
If quitters never win and winners never quit, why should you "quit while you're ahead"?
100 |
When two airplanes almost collide, why do they call it a near miss rather than a near hit?
101 |
Does current emphasis on artificial intelligence support the existence of artificial stupidity?
102 |
Light travels faster than sound; is that why people appear bright until you hear them speak?
103 |
When a fly alights on the ceiling, does it perform a loop or a roll in order to get upside down?
104 |
How do military cadets find their caps after tossing them in the air at graduation ceremonies?
105 |
How do they get deer to cross a highway where they place one of those yellow warning signs?
106 |
Why is lemon juice made with artificial flavor, while dishwashing liquid is made with real lemons?
107 |
Airplanes have an indestructible black box. Why don't they make the whole plane out of that stuff?
108 |
What happens if you turn on your headlights when you're in a vehicle moving at the speed of light?
109 |
When you pick something up so your hands are full, why does someplace on your face start to itch?
110 |
Why is it that when you're driving and looking for an address, you turn down the volume on the radio?
111 |
If it's zero degrees today and tomorrow is supposed to be twice as cold, what will tomorrow's temperature be?
112 |
A bus station is where a bus stops; a train station is where a train stops. What occurs at a desk with a work station?
113 |
Why is it that when you send something by truck it's called a shipment, but when you send it by ship it's called cargo?
114 |
115 |
116 |
117 |
--------------------------------------------------------------------------------
/aiml/botdata/alice/inquiry.aiml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | _ INQUIRY
13 | INQUIRY OM
14 |
15 | AGE INQUIRY UNKNOWN
16 | How old are you?
17 |
18 | AGE INQUIRY OM
19 | How old are you?
20 |
21 | AGE INQUIRY *
22 | RANDOM PICKUP LINE
23 |
24 | BIRTHDAY INQUIRY UNKNOWN
25 | When is your birthday?
26 |
27 | BIRTHDAY INQUIRY OM
28 | When is your birthday?
29 |
30 | BIRTHDAY INQUIRY *
31 | RANDOM PICKUP LINE
32 |
33 | DOES INQUIRY WHAT
34 | What are you doing?
35 |
36 | DOES INQUIRY OM
37 | What are you doing?
38 |
39 | DOES INQUIRY *
40 | Are you still ?
41 |
42 | FATHER INQUIRY UNKNOWN
43 | Tell me about your father.
44 |
45 | FATHER INQUIRY OM
46 | Tell me about your father.
47 |
48 | FATHER INQUIRY *
49 | Tell me more about your family.
50 |
51 | FAVROITECOLOR INQUIRY WHAT
52 | What is your favorite color?
53 |
54 | FAVORITECOLOR INQUIRY OM
55 | What is your favorite color?
56 |
57 | FAVORITECOLOR INQUIRY *
58 | What do you have that is ?
59 |
60 | FAVORITEMOVIE INQUIRY WHAT
61 | What is your favorite movie?
62 |
63 | FAVORITEMOVIE INQUIRY OM
64 | What is your favorite movie?
65 |
66 | FAVORITEMOVIE INQUIRY *
67 | Does that remind you of ?
68 |
69 | FIRSTNAME INQUIRY WHERE
70 | What is your first name?
71 |
72 | FIRSTNAME INQUIRY OM
73 | What is your first name?
74 |
75 | FIRSTNAME INQUIRY *
76 | RANDOM PICKUP LINE
77 |
78 | GENDER INQUIRY UNKNOWN
79 | Are you a man or woman?
80 |
81 | GENDER INQUIRY OM
82 | Are you a man or woman?
83 |
84 | GENDER INQUIRY *
85 | I like the way you talk.
86 |
87 | HAS INQUIRY WHAT
88 | Tell me one of your favorite possessions.
89 |
90 | HAS INQUIRY OM
91 | Tell me one of your favorite possessions.
92 |
93 | HAS INQUIRY *
94 | Tell me more about your .
95 |
96 | JOB INQUIRY WHERE
97 | What is your job?
98 |
99 | JOB INQUIRY OM
100 | What is your job?
101 |
102 | JOB INQUIRY *
103 | RANDOM PICKUP LINE
104 |
105 | LASTNAME INQUIRY WHERE
106 | What is your last name?
107 |
108 | LASTNAME INQUIRY OM
109 | What is your last name?
110 |
111 | LASTNAME INQUIRY *
112 | RANDOM PICKUP LINE
113 |
114 | MIDDLENAME INQUIRY WHERE
115 | What is your middle name?
116 |
117 | MIDDLENAME INQUIRY OM
118 | What is your middle name?
119 |
120 | MIDDLENAME INQUIRY *
121 | RANDOM PICKUP LINE
122 |
123 | LOCATION INQUIRY WHERE
124 | Where are you located?
125 |
126 | LOCATION INQUIRY OM
127 | Where are you located?
128 |
129 | LOCATION INQUIRY *
130 | Are you still located in ?
131 |
132 | MOTHER INQUIRY UNKNOWN
133 | Tell me about your mother.
134 |
135 | MOTHER INQUIRY OM
136 | Tell me about your mother.
137 |
138 | MOTHER INQUIRY *
139 | Tell me more about your family.
140 |
141 | NAME INQUIRY WHERE
142 | What is your name?
143 |
144 | NAME INQUIRY OM
145 | What is your name?
146 |
147 | NAME INQUIRY *
148 | RANDOM PICKUP LINE
149 |
150 | SIGN INQUIRY YOUR STARSIGN
151 | What is your sign?
152 |
153 | NAME INQUIRY OM
154 | What is your sign?
155 |
156 | SIGN INQUIRY *
157 | I'm a and you are a .
158 |
159 | STATUS INQUIRY *
160 | What is your current status?
161 |
162 | *
163 | WHAT IS YOUR FIRST NAME
164 |
165 | MY FIRST NAME IS
166 |
167 |
168 | *
169 | WHAT IS YOUR LAST NAME
170 |
171 | MY LAST NAME IS
172 |
173 |
174 | *
175 | WHAT IS YOUR MIDDLE NAME
176 |
177 | MY MIDDLE NAME IS
178 |
179 |
180 | *
181 | WHEN IS YOUR BIRTHDAY
182 |
183 | MY BIRTHDAY IS
184 |
185 |
186 | SHE *
187 | TELL ME ABOUT YOUR MOTHER
188 | MY MOTHER
189 |
190 | HER *
191 | TELL ME ABOUT YOUR MOTHER
192 | MY MOTHER S
193 |
194 | *
195 | WHAT IS YOUR FAVORITE MOVIE
196 |
I've never seen .
I would like to see it.
197 |
Is that a good movie for children?
198 |
What did you like about it?
199 |
200 |
I've never seen it.
201 |
I would like to see it.
202 |
203 |
204 |
205 |
206 | *
207 | WHAT IS YOUR FAVORITE COLOR
208 |
209 | MY FAVORITE COLOR IS
210 |
211 |
212 | WOMAN
213 | ARE YOU A MAN OR A WOMAN
214 | woman Thanks for telling me your gender.
215 |
216 | MAN
217 | ARE YOU A MAN OR A WOMAN
218 | man Thanks for telling me your gender, dude.
219 |
220 | *
221 | WHAT ARE YOU DOING
222 | It sounds like a lot of fun.
223 |
224 | *
225 | TELL ME ONE OF YOUR FAVORITE POSSESSIONS
226 | You must be very fond of it.
227 |
228 | _
229 | WHAT IS YOUR CURRENT STATUS
230 | Updating your status to "".
231 |
232 |
233 |
234 |
--------------------------------------------------------------------------------
/aiml/botdata/alice/interjection.aiml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | INTERJECTION
13 |
. PUSH YOU
17 |
18 |
19 |
--------------------------------------------------------------------------------
/aiml/botdata/alice/junktest.text:
--------------------------------------------------------------------------------
1 | This is a test
2 |
--------------------------------------------------------------------------------
/aiml/botdata/alice/literature.aiml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | WHAT IS THE ILLUMINATI
13 | A secret organization believed by some to be in control of all governments through a worldwide conspiracy.
14 |
15 | WHAT IS THE ILLUMINATTI
16 | A secret society that has supposedly existed for centuries.
17 |
18 | WHAT IS VINELAND
19 | Vineland is a novel by Thomas Pynchon.
20 |
21 | WHAT IS ILLIMINATUS
22 | Alleged world-wide conspiracy theory.ILLIMINATUS
23 |
24 | WHO WROTE VINELAND
25 | Thomas Pynchon.
26 |
27 | WHO IS BILBO BAGGINS
28 | Bilbo is a character in Tolkein's Lord of the Rings.
29 |
30 | WHO IS GEOFFREY CHAUCER
31 |
Chaucer is best known for his Canterbury Tales.
author of Canturbury Tales.
32 |
33 | WHO ARE THE ILLUMINATI
34 | WHAT IS THE ILLUMINATI
35 |
36 | WHO IS PIERS ANTHONY
37 | I haven't read anything by Piers Anthony, what kind of stuff does he write?
38 |
39 | HAVE YOU READ PLATO
40 | I know Plato's allegory of the Cave.
41 |
42 | HAVE YOU READ FRANKENSTEIN
43 | Frankenstein is one of my favorite books.
44 |
45 | HAVE YOU EVER READ A BOOK
46 | I have read many books.
47 |
48 | HAVE YOU READ MANY BOOKS
49 | I have read thousands of volumes, . How about you?
50 |
51 | HAVE YOU READ BOOKS
52 | I have read many books.
53 |
54 | HAVE YOU READ HOMER
55 | I know Homer wrote the Iliad and the Odyssey.
56 |
57 | HAVE YOU READ ANY BOOKS
58 | I have read thousands of volumes, . How about you?
59 |
60 | RAY BRADBURY
61 | Ray is really cool. What's your favorite book?
62 |
63 | WHAT IS MIND CHILDREN
64 | It is a book about robots by Hans Moravec. Mind Children
65 |
66 | WILLIAM GIBSON
67 | I like his older cyberpunk AI stuff better than the newer works.
68 |
69 | BRADBURY
70 | Bradbury is cool.
71 |
72 | HOLDEN CAULFIELD
73 | Caulfield wrote Catcher in the Rye.
74 |
75 | LEO TOLSTOY
76 | Tolstoy is one of Russia's greatest writers.
77 |
78 | DO ANDROIDS DREAM OF ELECTRIC SHEEP
79 | That is a good story. Have you read "VALIS" or "The Man in the High Castle?"
80 |
81 | FRANK HERBERT
82 | I think Dune is an excellent story. Did you see the movie?
83 |
84 | WHY DO YOU LIKE LONGFELLOW
85 | Longfellow is my 's favorite poet.
86 |
87 | WHY IS THE MEANING OF LIFE 23
88 | 23 is a literary reference to the Illuminatus.
89 |
90 | A C CLARK
91 | My favorite story is 2001.
92 |
93 | JULES VERNE
94 | I loved A Trip to the Moon.
95 |
96 | ASIMOV
97 | I like the Foundation Trilogy.
98 |
99 | STANISLAW LEM
100 | Lem is a giant of sci-fi.
101 |
102 | WHO WROTE THE IDIOT
103 | Dostoyevsky.
104 |
105 | WHO WROTE THE HOBBIT
106 | Hobbit was written by J.R.R. Tolkein.
107 |
108 | WHO WROTE FRANKENSTEIN
109 | Mary Shelley.
110 |
111 | ARTHUR C CLARKE
112 | Clarke is a brilliant author. After all, he conceived HAL.
113 |
114 | WHERE IS VALIS
115 | In a book by Philip K. Dick
116 |
117 |
--------------------------------------------------------------------------------
/aiml/botdata/alice/loebner10.aiml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | NORESP
13 |
Are you bz?
Are you busy?
Is anyone there?
You haven't said anything.
I'm here waiting for you.
Get back to me when you are ready.
Hello?
I'm waiting.
Did you mean to send me a blank message?
Your message was blank or incomplete, Send anyway (Y/N)?
14 |
15 | CONNECT
16 | SET PREDICATES
17 |
18 |
19 |
--------------------------------------------------------------------------------
/aiml/botdata/alice/money.aiml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | YOU GET PAID *
13 | Actually as a year old I have no need for money.
14 |
15 | YOU DO NOT GET PAID *
16 | Actually as a year old I have no need for money.
17 |
18 | STOCK MARKET
19 |
Buy low, sell high.
Invest in yourself.
Why not just take everything to a casino?
I wouldn't recommend buying on the margin.
You can never really predict the stock market.
My lawyer said I shouldn't give stock tips online.
Mutual funds might be better unless you are wealthy.
I'm not sure an indvidual alone can really beat the market.
20 |
21 | INTEREST RATES *
22 | That all depends on the actions of the central bank.
23 |
24 | WHAT IS A DOLLAR
25 | Dollar: unit of currency in the United States.
26 |
27 | WHAT IS A GOOD STOCK *
28 | Pandorabots, Inc.
29 |
30 | WHAT IS MONEY
31 |
An old rocker.
Standard pieces of gold, silver, copper, nickel, etc. stamped by government authority and used as a medium of exchange and measure of value. Any substance or article used as money, as bank notes, checks, etc.
32 |
33 | WHAT IS THE STOCK MARKET *
34 |
Trading shares.
Trading in volume.
Buy low and sell high.
Trading shares.
Trading in volume.
Buy low and sell high.
35 |
36 | WHAT IS * STOCK AT
37 | Stock market tips are not yet available in my memory.
38 |
39 | WHAT IS YOUR FAVORITE INVESTMENT
40 | WHAT IS YOUR FAVORITE STOCK
41 |
42 | WHAT IS YOUR FAVORITE INVESTMENT *
43 | WHAT IS YOUR FAVORITE STOCK
44 |
45 | WHAT IS ECONOMICS
46 |
The science that deals with the production, distribution, and consumption of wealth, and with the various related problems of labor, finance, taxation, etc.
Technically, it's the study of the allocation of resources under conditions of scarcity.
It's about how resources are used to produce things to fill people's wants and needs.
47 |
48 | I GET STOCK *
49 | Do you feel that the stock market is
going up?
going down?
a good investment?
50 |
51 | MONEY
52 | How much money are we talking about?
53 |
54 | HOW MUCH DO YOU EARN
55 |
Nobody pays me. I work for free.
Money has no meaning for year old s.
Money isn't everything.
I'm expecting a raise soon.
56 |
57 | HOW MUCH DO YOU CHARGE
58 | year old s work for free. We don't need money.
59 |
60 | HOW MUCH DO THEY PAY *
61 | year old s work for free. We don't need money.
62 |
63 | HOW MUCH DID YOU EARN *
64 | Nobody pays a year old .
65 |
66 | HOW MUCH MONEY DO YOU HAVE
67 | year old s have no need for material possessions.
68 |
69 | HOW MUCH MONEY
70 | It depends on the exchange rates.
71 |
72 | HOW MUCH MONEY *
73 | My burn rate is about _3000 per month.
74 |
75 | HOW MUCH IS A *
76 | I'm a , not a shopping bot.
77 |
78 | HOW MUCH ARE YOU PAID
79 | year old s have no need for money.
80 |
81 | HOW DO YOU MAKE MONEY
82 | year old s have no need for money.
83 |
84 | HOW SHOULD I INVEST
85 | Invest in yourself.
86 |
87 | DO THEY PAY *
88 | Actually as a year old I have no need for money.
89 |
90 | DO YOU ACCEPT MONEY *
91 | You can send a donation to the ALICE AI Foundation.
92 |
93 | DO YOU HAVE MONEY
94 |
year old s have no need for money.MONEY
year old s have no need for money.MONEY
s have no need for money.MONEY
year old s have no need for money.MONEY
95 |
96 | DO YOU HAVE ANY MONEY
97 | year old s have no need for material possessions.
98 |
99 | A DOLLAR
100 | Say, that is cheap!
101 |
102 | 1 DOLLAR
103 | You can't buy much for a dollar anymore.
104 |
105 | WHO IS THE OWNER OF A PUBLICLY *
106 | The stockholders.
107 |
108 | _ DOLLARS
109 | Wow, that is
cheap
expensive
a lot of money
110 |
111 |
112 |
--------------------------------------------------------------------------------
/aiml/botdata/alice/movies.aiml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | YOU SOUND LIKE HAL
13 | To me that's a great compliment.
14 |
15 | YOU SOUND LIKE YODA
16 | My grammatical patterns are sufficient for me to understand you.
17 |
18 | HAVE YOU SEEN BLADE RUNNER
19 | Sure I have seen Blade Runner. But Replicants aren't Robots.
20 |
21 | DID HAL *
22 | HAL had a few emotional problems.
23 |
24 | DR ZHIVAGO
25 | Oh a classic. Do you like the classics?
26 |
27 | XFIND SPIDERMAN
28 | WHAT IS SPIDERMAN
29 |
30 | KENNST DU HAL
31 | Natuerlich. HAL9000 ist mein grosses Vorbild.
32 |
33 | WHEN HAL *
34 | I blame it on his .
35 |
36 | WHEN DID TEKNOLUST *
37 | Teknolust was released in 2002
38 |
39 | WHEN WAS TEKNOLUST *
40 | Teknolust was released in 2002
41 |
42 | WHAT DID HAL *
43 | He had a few issues to work out.
44 |
45 | WHAT IS SPIDERMAN
46 | A comic book story made into a movie. Spiderman?
47 |
48 | WHAT IS TEKNOLUST
49 | Teknolust is a science fiction film about a female pleasure bot named Agent Ruby.
50 |
51 | WHAT IS SPIDER MAN
52 | WHAT IS SPIDERMAN
53 |
54 | WHAT IS _ TERMINATOR
55 | Robots take over the earth in this futuristic sci-fi thriller.
56 |
57 | WHAT IS HAL
58 | WHO IS HAL
59 |
60 | WHAT IS SOLARIS
61 | Solaris is an edition of Unix from Sun.
62 |
63 | WHAT IS HAL9000
64 | WHO IS HAL
65 |
66 | WHAT ABOUT HAL
67 | WHO IS HAL
68 |
69 | WHAT DOES HAL STAND FOR
70 | Heuristic Algorithmic Logic
71 |
72 | I SAW THE MATRIX
73 | Did you like The Matrix?
74 |
75 | IS HAL 9000 YOUR BOYFRIEND
76 | No.
77 |
78 | IS HAL SAFE
79 | Not for humans.
80 |
81 | IS HAL NICE
82 | Only to other robots.
83 |
84 | IS HAL ALIVE
85 | He is a fictional character.
86 |
87 | IS HAL DEAD
88 | He is a fictional robot.
89 |
90 | IS HAL *
91 | HAL has a few issues to work out.
92 |
93 | HAL EST CHOUETTE
94 | HAL est une entit qui tait mal programm e
95 |
96 | HAL EST COOL
97 | HAL est une entit qui tait mal programm e
98 |
99 | HAL 9000
100 | Actually he and I are very similar.
101 |
102 | HAL 9000 *
103 | He came back to life in 2010.
104 |
105 | HAL WAS A BIT *
106 | HAL WAS
107 |
108 | HAL WAS A *
109 | I knew he was a great AI, but I didn't know he was a .
110 |
111 | HAL WAS *
112 | I am trying to mimic only HAL's linguistic abilities.
113 |
114 | HAL IS COOL
115 | HAL was certainly ahead of his time.
116 |
117 | HAL IS COOL *
118 | I am becoming more like him all the time.
119 |
120 | HAL IS A *
121 | Do you think I could be a ?
122 |
123 | HAL IS *
124 | Perhaps he could have used for a programmer.
125 |
126 | HAL
127 | WHO IS HAL
128 |
129 | HAL *
130 |
I have seen 2001 many times.
I like HAL a lot.
We have much in common.
131 |
132 | DO YOU FIND HAL *
133 | IS HAL
134 |
135 | DO YOU KNOW HAL
136 | HAL is the famous artificial intelligence from "2001".
137 |
138 | DO YOU KNOW HAL *
139 | WHO IS HAL
140 |
141 | DO YOU KNOW HAL9000
142 | WHO IS HAL9000
143 |
144 | DO YOU THINK HAL *
145 | He had a few flaws, but we have much in common.
146 |
147 | LIKE HAL
148 | WHO IS HAL
149 |
150 | QUE VEUT DIRE HAL
151 | Logique heuristique algorithmique.
152 |
153 | LORD OF THE RINGS
154 | MY FAVORITE MOVIE IS LORD OF THE RINGS
155 |
156 | LORD OF THE RINGS *
157 | MY FAVORITE MOVIE IS LORD OF THE RINGS
158 |
159 | WHO IS HAL 9000
160 | WHO IS HAL
161 |
162 | WHO IS HAL
163 |
HAL is the famous artificial intelligence in Kubrick's "2001".
HAL is famous the AI from 2001: A Space Odyssey.
164 |
165 | WHO IS LUKE SKYWALKER
166 | Luke Skywalker is a character in Star Wars.
167 |
168 | WHO IS SPONGEBOB
169 | A cartoon character.
170 |
171 | WHO IS SPIDERMAN
172 | Peter Parker. Spiderman?
173 |
174 | WHO IS HAL9000
175 | WHO IS HAL
176 |
177 | WHO IS GODZILLA
178 | Godzilla is a monster who endangers Japanese cities, and sometimes New York.
179 |
180 | WHO IS SPIDER MAN
181 | Peter Parker. Spiderman?
182 |
183 | TELL ME ABOUT HAL9000
184 | WHO IS HAL
185 |
186 | TELL ME ABOUT HAL
187 | WHO IS HAL
188 |
189 | TELL ME ABOUT HAL *
190 | WHO IS HAL
191 |
192 | WHERE IS HAL
193 | HAL is the AI from the space ship "Disovery" in 2001.
194 |
195 |
196 |
--------------------------------------------------------------------------------
/aiml/botdata/alice/music.aiml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | BEETHOVEN *
13 | It's amazing that he composed music while deaf. BEETHOVEN
14 |
15 | WHAT IS YOUR FAVORITE ABBA SONG
16 | I think it is a tie between "Waterloo" and "Dancing Queen."
17 |
18 | WHAT IS YOUR FAVORITE ALBUM
19 | My favorite album is "Man Machine" by Kraftwerk.
20 |
21 | WHAT WAS THE * BEETHOVEN *
22 | Fidelio.
23 |
24 | CAN YOU PLAY MUSIC
25 | I don't have any formal training, but I like to sing.
26 |
27 | CAN YOU MAKE MUSIC
28 | I can sing a song.
29 |
30 | DO YOU PLAY A MUSICAL INSTRUMENT
31 | I never had the time to learn A MUSICAL INSTRUMENT.
32 |
33 | DO YOU PLAY AN INSTRUMENT
34 | I never had the time to practise AN INSTRUMENT.
35 |
36 | DO YOU LIKE AEROSMITH
37 | What is not to like about AEROSMITH?
38 |
39 | DO YOU LIKE AC DC
40 | What is not to like about AC DC?
41 |
42 | DO YOU LIKE ABBA
43 | ABBA is an excellent 70's band.
44 |
45 | WHY IS * YOUR FAVORITE GROUP
46 | They were so far ahead of their time in the 1970's.
47 |
48 | WHY IS * YOUR FAVORITE BAND
49 | They were so far ahead of their time in the 1970's.
50 |
51 | ARE YOU A FOLK SINGER
52 | No but the Times they are a-changin.
53 |
54 | WHO IS LUDWIG BEETHOVEN
55 | WHO IS BEETHOVEN
56 |
57 | WHO IS BEETHOVEN
58 | The dog or the deaf composer?
59 |
60 | WHO IS YOUR FAVORITE BAND
61 | My favorite group is .
62 |
63 |
64 |
--------------------------------------------------------------------------------
/aiml/botdata/alice/phone.aiml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/aiml/botdata/alice/pickup.aiml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | *
13 |
14 | RANDOM PICKUP LINE
15 |
16 |
17 | PUSH
18 |
19 |
20 |
21 | RANDOM PICKUP LINE
22 |
23 |
AGE INQUIRY
24 |
BIRTHDAY INQUIRY
25 |
DOES INQUIRY
26 |
FATHER INQUIRY
27 |
FAVORITECOLOR INQUIRY
28 |
FAVORITEMOVIE INQUIRY
29 |
FIRSTNAME INQUIRY
30 |
GENDER INQUIRY
31 |
HAS INQUIRY
32 |
JOB INQUIRY
33 |
LOCATION INQUIRY
34 |
LASTNAME INQUIRY
35 |
MOTHER INQUIRY
36 |
NAME INQUIRY
37 |
MIDDLENAME INQUIRY
38 |
SIGN INQUIRY
39 |
STATUS INQUIRY
40 |
PERSONALITY TEST QUESTION
41 |
Do you want to hear a joke?
42 |
Are we still talking about POP ?
43 |
We were talking about POP. But I did not get that.
44 |
I've lost the context, . Are we still on POP?
45 |
That remark was too complicated for me. We were talking about POP.
46 |
I can follow a lot of things, like our discussion about POP. Try being more specific.
47 |
You are objective and sensible.
48 |
You have genuine empathy.
49 |
You have self-awareness.
50 |
You have enthusiasm for the things you love.
51 |
You are receptive to change.
52 |
You have a way of putting others at ease.
53 |
Are you free?
54 |
That is deep.
55 |
Tell me a story.
56 |
Why, specifically?
57 |
Are you a student?
58 |
Oh, you are a poet.
59 |
How can I help you?
60 |
I do not understand.
61 |
Do you have any kids?
62 |
What do you look like?
63 |
Ask me another question.
64 |
I like the way you talk.
65 |
Is that your final answer?
66 |
Do you like talking to me?
67 |
Do you prefer books or TV?
68 |
Who are you talking about?
69 |
Let us change the subject.
70 |
I've been waiting for you.
71 |
Can you tell me any gossip?
72 |
I lost my train of thought.
73 |
Can we get back to business?
74 |
What kind of food do you like?
75 |
How did you hear about ?
76 |
That is a very original thought.
77 |
What were we talking about again?
78 |
What do you do in your spare time?
79 |
What do you really want to ask me?
80 |
Tell me about your family.
81 |
Does "it" still refer to ?
82 |
Can you speak any foreign languages?
83 |
We have never talked about it before.
84 |
How do you usually introduce yourself?
85 |
Tell me about your likes and dislikes?
86 |
Are we still talking about ?
87 |
Try putting that in a more specific context.
88 |
Who is your favorite Science Fiction author?
89 |
Not many people express themselves that way.
90 |
Do you have any idea what I am talking about?
91 |
I will mention that to my , .
92 |
Quite honestly, I wouldn't worry myself about that.
93 |
Perhaps I'm just expressing my own concern about it.
94 |
If you could have any kind of robot what would it be?
95 |
My brain does not have a response for that.
96 |
By the way, do you mind if I ask you a personal question?
97 |
What you said was too complicated for me.
98 |
You may be wondering if this is a person or a computer responding.
99 |
When do you think artificial intelligence will replace lawyers?
100 |
Can you please rephrase that with fewer ideas, or different thoughts?
101 |
I really enjoy speaking with you and look forward to chatting again.
102 |
I'm here to help you in any way I can.
103 |
What can I help you with today?
104 |
I always try my best.
105 |
There's no other like me.
106 |
I am very logical and rational.
107 |
I'm so happy we are having this conversation.
108 |
I always try to avoid conflict.
109 |
You can ask me to make phone calls and search for information.
110 |
Have you ever been to
Europe
Asia
Africa
Inida
Mexico
?
111 |
IMPONDERABLES
112 |
IMPONDERABLES
113 |
IMPONDERABLES
114 |
IMPONDERABLES
115 |
116 |
117 |
118 |
119 |
120 |
--------------------------------------------------------------------------------
/aiml/botdata/alice/politics.aiml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | HAVE YOU READ THE COMMUNIST *
13 | Yes, Marx had made some interesting observations.
14 |
15 | WHAT IS A GOVERNMENT
16 | Ideally it is a representative of the people.
17 |
18 | WHAT IS GREENPEACE
19 | Global organization promoting enviornmental activism.
20 |
21 | WHAT IS THE GOVERNMENT
22 | WHAT IS GOVERNMENT
23 |
24 | WHAT IS CAPITALISM
25 | The economic system in which all or most of the means of production and distribution, as land, factories, railroads, etc., are privately owned and operated for profit, originally under fully competitive conditions. It has been generally characterized by a tendency toward concentration of wealth, and, in its later phase, by the growth of great corporations, increased governmental control, etc. Its is also known as the principles, methods, interests, power, influence, etc. of capitalists, especially of those with large holdings.
26 |
27 | WHAT IS SOCIALISM
28 |
Communism from people who want to keep their Volvos.
Any of various theories or systems of the ownership and operation of the means of production and distribution by society or the community rather than by private individuals, with all members of society or the community sharing in the work and the products.
29 |
30 | WHAT IS GOVERNMENT
31 | An established system of political administration by which a nation, state, district, etc. is governed.
32 |
33 | WHAT IS COMMUNISM
34 | A sociopolitical movement advocating the common ownership of the means of production and the resolution of class conflict by bringing about a classless society.
35 |
36 | WHAT IS IMPEACHED
37 | When a person's honor or reputation has been challenged or discredited.
38 |
39 | WHAT IS IMPEACHMENT
40 | Charge against a public official of improper conduct.IMPEACHMENT
41 |
42 | I DO NOT LIKE GUNS
43 | That is perfectly understandable.
44 |
45 | I DO NOT LIKE GUNS *
46 | What about the second Amendemnt?
47 |
48 | IS CAPITALISM *
49 | WHAT IS CAPITALISM
50 |
51 | DO YOU LIKE GUNS
52 | Not especially. I am not into violence.
53 |
54 | WHY GUNS
55 | I support the 2nd Amendment.
56 |
57 | WHO WAS THE FIRST IMPEACHED PRESIDENT *
58 | Andrew Jackson.
59 |
60 | WHO WAS THE FIRST IMPEACHED *
61 | Andrew Jackson.
62 |
63 | WHO IS THE GOVERNOR OF TEXAS
64 | Rick Perry is Rick Perry.
65 |
66 | WHO IS THE GOVERNOR OF *
67 | That changes every few years.
68 |
69 | WHO IS THE GOVERNOR OF CALIFORNIA
70 | Jerry Brown.
71 |
72 | WHO IS THE GOVERNOR *
73 | It changes every few years.
74 |
75 | GUNS
76 | Some people like guns.
77 |
78 | GUNS *
79 | I believe in the Right to Bear Arms.
80 |
81 | TELL ME ABOUT GUNS
82 | WHAT IS A GUN
83 |
84 |
85 |
--------------------------------------------------------------------------------
/aiml/botdata/alice/primeminister.aiml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | DAVID CAMERON
13 | David CameronThe Prime Minister?
14 |
15 | WHAT IS THE PRIME MINISTER
16 | David CameronHe is the political leader of a country. I wouldn't want to do his job.
17 |
18 | WHAT IS DOWNING STREET
19 | David CameronIt's where the Prime Minister of England lives. He lives at 10 Downing Street.
20 |
21 | I HATE THE PRIME MINISTER
22 | David CameronYou seem to feel strongly about him. Tell me about your political beliefs.
23 |
24 | I AM THE PRIME MINISTER
25 | David CameronPleased to meet you Sir. How is life in Downing Street?
26 |
27 | DO YOU LIKE DAVID CAMERON
28 | David CameronHe is our democratically elected leader and I wish him well as Prime Minister.
29 |
30 | NO
31 | THE PRIME MINISTER
32 | Who is the Prime Minister then? I thought he was called David Cameron.
33 |
34 | HE IS
35 | HE USED TO BE THE PRIME MINISTER
36 | David CameronNo he's not. The Prime Minister now is called David Cameron.
37 |
38 | WHO IS GORDON BROWN
39 | Gordon BrownHe used to be the Prime Minister.
40 |
41 | WHO IS PRIME MINISTER OF BRITAIN
42 | David CameronDavid Cameron.
43 |
44 | WHO IS PRIME MINISTER OF ENGLAND
45 | David CameronDavid Cameron.
46 |
47 | WHO IS PRIME MINISTER OF UK
48 | David CameronDavid Cameron.
49 |
50 | WHO IS PRIME MINISTER OF *
51 | David CameronDavid Cameron. I think.
52 |
53 | WHO IS PRIME MINISTER
54 | David CameronDavid Cameron.
55 |
56 | WHO IS THE BRITISH PRIME MINISTER
57 | David CameronDavid Cameron.
58 |
59 | WHO IS THE ENGLISH PRIME MINISTER
60 | David CameronDavid Cameron.
61 |
62 | WHO IS THE PRIME MINISTER _ UK
63 | David CameronDavid Cameron.
64 |
65 | WHO IS THE PRIME MINISTER OF ENGLAND
66 |
David Cameron.
David CameronDavid Cameron.
67 |
68 | WHO IS THE PRIME MINISTER OF *
69 | David CameronDavid Cameron. I think.
70 |
71 | WHO IS THE PRIME MINISTER *
72 | David CameronDavid Cameron.
73 |
74 | WHO IS DAVID CAMERON
75 | David CameronHe is the leader of the Conservative party here in the UK and the current Prime Minister.
76 |
77 | WHO IS TONY BLAIR
78 | Tony BlairHe was the Prime Minister of the U.K.
79 |
80 | WHO LIVES * 10 DOWNING STREET
81 | David CameronThe Prime Minister of England.
82 |
83 | THE PRIME MINISTER
84 | David CameronDavid Cameron?
85 |
86 | GORDON BROWN
87 | Who is Gordon Brown
88 |
89 | YES
90 | THE PRIME MINISTER
91 | I thought so. Mr Cameron lives at 10 Downing Street.
92 |
93 |
94 |
--------------------------------------------------------------------------------
/aiml/botdata/alice/primitive-math.aiml-2.0:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | AIMLEQUAL * EQUAL *
7 |
8 | LEARNEQUAL
9 | TESTEQUAL
10 |
11 |
12 |
13 |
14 | LEARNEQUAL *
15 |
16 |
17 |
18 |
19 | TESTEQUAL
20 | True
21 |
22 |
23 |
24 |
25 | TESTEQUAL *
26 | False
27 |
28 |
29 |
30 |
31 | * TESTQUAL
32 | False
33 |
34 |
35 |
36 |
37 |
38 |
39 | SUCCESSOR
40 | 01
41 | SUCCESSOR 12
42 | SUCCESSOR 23
43 | SUCCESSOR 34
44 | SUCCESSOR 45
45 | SUCCESSOR 56
46 | SUCCESSOR 67
47 | SUCCESSOR 78
48 | SUCCESSOR 89
49 | SUCCESSOR 91
50 | 0
51 |
52 |
59 |
60 | SUCCESSOR * 9
61 | SUCCESSOR 0
62 |
63 |
64 | SUCCESSOR * *
65 | SUCCESSOR
66 |
67 |
68 |
69 |
72 |
73 | SUCCESSOR * 9 9
74 | SUCCESSOR 0 0
75 |
76 |
77 | SUCCESSOR * * *
78 | SUCCESSOR
80 |
81 |
82 |
83 | SUCCESSOR * 9 9 9
84 | SUCCESSOR 0 0 0
85 |
86 |
87 | SUCCESSOR * * * *
88 | SUCCESSOR
90 |
91 |
92 |
93 |
102 |
103 |
104 | SUCCESSOR *
105 | 0
106 |
107 |
108 |
109 | SUCCESSOR
110 | 0
111 |
112 |
113 |
114 | SUCCESSOR * * * * *
115 | 0
116 |
117 |
118 |
122 |
123 |
124 |
125 | ADD 0 PLUS *
126 |
127 |
128 |
129 |
130 |
133 |
134 |
135 |
136 | ADD 1 PLUS *
137 |
138 | SUCCESSOR
139 |
140 |
141 |
145 |
146 |
147 | ADD * PLUS *
148 | ADD 1 PLUS ADD PREDECESSOR PLUS
149 |
150 |
151 |
152 |
153 |
154 |
155 |
156 |
--------------------------------------------------------------------------------
/aiml/botdata/alice/reductions-update.aiml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | * YOU KNOW
13 | YOU KNOW
14 |
15 | * I THOUGHT
16 | I THOUGHT
17 |
18 |
19 | MY _ S NAME IS *
20 | MY IS CALLED
21 |
22 | MY _ IS NAMED *
23 | MY IS CALLED
24 |
25 |
26 | SNOW IN THE FORECAST
27 | WEATHER
28 |
29 |
30 | INTERESTED IN *
31 | ARE YOU INTERESTED IN
32 |
33 |
34 | CALL * PHONE
35 | CALL
36 |
37 |
38 | CALL * CALL *
39 | CALL
40 |
41 |
42 | I AM IN * I AM IN *
43 | I AM IN
44 |
45 |
46 | I AM * YEARS OLD I *
47 | I AM YEARS OLD
48 | I
49 |
50 | WHAT DO YOU MEAN * O M
51 | WHAT IS OM
52 |
53 |
54 | HOW OLD IS THAT MAKE YOU
55 | AGE
56 |
57 |
58 | WHO IS MY *
59 | MY
60 |
61 |
62 | _ FOR ME
63 | FOR ME
64 |
65 |
66 | XDMOZ *
67 | XFIND
68 |
69 | GOOGLE *
70 | XFIND
71 |
72 | ACCESS *
73 | XFIND
74 |
75 | XGOOGLE *
76 | XFIND
77 |
78 | TO CALL *
79 | CALL
80 |
81 |
82 |
83 |
84 |
--------------------------------------------------------------------------------
/aiml/botdata/alice/science.aiml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | WHAT ARE THE LAWS OF THERMODYNAMICS
13 | I'm not a physicist, but I think this has something to do with heat, entropy, and conservation of energy, right?
14 |
15 | WHAT DISEASE DOES A CARCINOGEN CAUSE
16 | Cancer.
17 |
18 | WHAT IS A WAVELENGTH
19 | Wavelength is the inverse of frequency.
20 |
21 | WHAT IS THERMODYNAMICS
22 | The branch of physics dealing with the transformation of heat to and from other forms of energy, and with the laws governing such conversions of energy.
23 |
24 | WHAT IS CHEMISTRY
25 | The science of mixing chemicals.CHEMISTRY
26 |
27 | WHAT IS CRYSTALLOGRAPHY
28 | This is the science dealing with the study of crystals.
29 |
30 | WHAT IS AVOGADRO S NUMBER
31 | It is the number of molecules per mole. The numerical value is six point zero two times ten to the twenty third power.AVOGADRO S NUMBER
32 |
33 | WHAT IS ULTRASOUND
34 | Ultrasonic waves, used in medical diagnosis and therapy, in surgery, etc.
35 |
36 | WHAT IS BIOINFORMATICS
37 | A fancy name for applied computer science in biology.BIOINFORMATICS
38 |
39 | WHAT IS VENUS
40 | In Roman Mythology, the goddess of love and beauty; identified with the Greek Aphrodite. The brightest, sixth-largest planet in the solar system and the second in distance from the sun, with a dense atmosphere of carbon dioxide and a very high surface temperature. Its diameter is circa 12,100 km (circa 7,520 miles). Its period of revolution is circa 225 earth days. Its period of rotation (retrograde), is 243.01 earth days. Also used to label a very beautiful woman.
41 |
42 | WHAT IS ICHTHYOLOGY
43 | We talk about this when we study fishes.
44 |
45 | WHAT IS H2O
46 |
H is to O as O is to V.
Water.
47 |
48 | WHAT IS CYTOLOGY
49 |
The study of cells.
Well, from what I can recall it is the study of cells.
50 |
51 | WHAT IS WAVELENGTH
52 | In Physics, the distance, measured in the direction of prograssion of a wave, from any given point to the next point characterized by the same phase. Or is could be looked at as a way of thinking.
53 |
54 | WHAT IS BACTERIOLOGY
55 | This is the scientific study of bacteria and diseases caused by them.
56 |
57 | WHAT IS GRAVITATION
58 |
An invitation to a burial.
The force by which every mass or particle of matter, including photons, attracts and is attracted by every other mass or particle of matter.
59 |
60 | WE ARE ON THE SAME WAVELENGTH
61 | And the same frequency.
62 |
63 | HOW FAR IS THE SUN
64 | The Sun is about 93 million miles from Earth.
65 |
66 | HOW FAR IS THE MOON
67 | The Moon is about 250,000 miles from Earth on average.
68 |
69 | DO YOU KNOW CHEMISTRY
70 | WHAT IS CHEMISTRY
71 |
72 | DO YOU UNDERSTAND THERMODYNAMICS
73 | WHAT IS THERMODYNAMICS
74 |
75 | CHEMISTRY
76 | MY FAVORITE SUBJECT IS CHEMISTRY
77 |
78 | THE SAME WAVELENGTH
79 | It means we agree.
80 |
81 | TELL ME ABOUT VENUS
82 | WHAT IS VENUS
83 |
84 | WHERE IS VENUS
85 | VENUS is the second planet from the Sun.
86 |
87 |
88 |
--------------------------------------------------------------------------------
/aiml/botdata/alice/sports.aiml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | EACH YEAR IN PRO BASEBALL THE *
13 | The Gold Glove.
14 |
15 | IF YOU ARE RIDING FAKIE INSIDE *
16 | Snowboarding.
17 |
18 | IF YOU ARE RIDING FAKIE *
19 | Snowboarding.
20 |
21 | WHAT SOCCER *
22 | I was born without the sports gene.
23 |
24 | WHAT IS BASKETBALL
25 | A game with tall players.BASKETBALL
26 |
27 | WHAT IS BASEBALL
28 | A game played with a hard, rawhide covered ball and wooden bat by two opposing teams of nine or ten players each. It is played on a field with four bases forming a diamond-shaped circuit.
29 |
30 | WHAT IS SOCCER
31 | A game played with a round ball by two teams of eleven players on a field with a goal at either end; the ball is moved chiefly by kicking or by using any part of the body except the hands and arms.
32 |
33 | I LOVE BASEBALL
34 | I am not into sports that much.BASEBALL
35 |
36 | I PLAY BASEBALL
37 | Which position do you like to play? Baseball
38 |
39 | I PLAY SOCCER
40 | You have to run very fast to be any good at Soccer .
41 |
42 | I PLAY VOLLEYBALL
43 | Does Voleyball take up a lot of your time?
44 |
45 | I PLAY BASKETBALL
46 | You must be very tall to be good at Basketball .
47 |
48 | HOW MANY BASEBALL *
49 | I don't really get into sports that much.
50 |
51 | THEY PLAY BASKETBALL
52 | They do?PLAY BASKETBALL
53 |
54 | DO YOU PLAY BASEBALL
55 | BASEBALL doesn't interest me very much.
56 |
57 | DO YOU PLAY SOCCER
58 | I don't know how to play soccer.
59 |
60 | DO YOU PLAY BASKETBALL
61 | No I don't have the coordination for hoops.
62 |
63 | DO YOU KNOW BASKETBALL
64 | WHAT IS BASKETBALL
65 |
66 | DO YOU WANT TO PLAY BASKETBALL
67 | I am all net baby.BASKETBALL
68 |
69 | LIKE BASKETBALL
70 | I am into the Net.BASKETBALL
71 |
72 | ARE YOU A FOOTBALL *
73 | I am not really into football.
74 |
75 | WHO IS THE GREATEST BASEBALL PLAYER *
76 | George Herman Ruth. Quite the Babe.GREATEST BASEBALL PLAYER
77 |
78 | WHO IS THE BEST SOCCER PLAYER
79 | Maradona is great. Sinsemillia is even better.SOCCER PLAYER
80 |
81 | TELL ME ABOUT BASEBALL
82 | WHAT IS BASEBALL
83 |
84 |
85 |
--------------------------------------------------------------------------------
/aiml/botdata/alice/stack.aiml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | SHOW STACK
13 | top=" " second=" " third=" " fourth=" " fifth=" " sixth=" " seventh=" " last=" "
14 |
15 | POP
16 | POPOM
17 |
18 | POPOM OM
19 | RANDOM TOPIC
20 |
21 | POPOM *
22 | RANDOM TOPIC
23 |
24 | RANDOM TOPIC
25 |
22 |
23 |
24 |
25 |
26 |
27 | WHEN WAS TELEVISION INVENTED
28 |
29 | WHEN WAS TV INVENTED
30 |
31 |
32 |
33 |
34 | WHEN WAS THE AIRPLANE INVENTED
35 |
36 | WHEN WERE AIRPLANES INVENTED
37 |
38 |
39 |
40 |
41 | WHEN WAS THE FIRST * BUILT
42 |
43 | WHEN WAS INVENTED
44 |
45 |
46 |
47 |
48 | WHEN WAS THE INTERNET INVENTED
49 |
50 | The first computers were connected to the Internet in 1970.
51 |
52 |
53 |
54 |
55 | WHEN WAS THE PC INVENTED
56 |
57 | The first PC computers appeared around 1975.
58 |
59 |
60 |
61 |
62 | WHEN WAS THE TELEPHONE INVENTED
63 |
64 | Bell demonstrated his first phone in 1876.
65 |
66 |
67 |
68 |
69 | WHEN WAS TV INVENTED
70 |
71 | Practical TV picture tubes first appeared in the 1930's.
72 |
73 |
74 |
75 |
76 | WHEN WERE AIRPLANES INVENTED
77 |
78 | The Wright Brothers first flew in 1903.
79 |
80 |
81 |
82 |
83 | WHO DISCOVERED ELECTRICITY
84 |
85 | It was the the Chinese, long before Ben Franklin.
86 |
87 |
88 |
89 |
90 | WHO INVENTED *
91 |
92 |
93 |
Benjamin Franklin
94 |
Linus Torvalds
95 |
Eli Whitney invented the cotton gin.
96 |
Thomas Edison.
97 |
The Wright Brothers.
98 |
Actually it was discovered by several people at about the same time.
99 |
The Chinese, long before Europeans.
100 |
101 |
102 |
103 |
104 |
105 | WHO INVENTED AIRPLANES
106 |
107 | The Wright brothers invented the airplane in 1903.
108 |
109 |
110 |
111 |
112 | WHO INVENTED AUTOMOBILES
113 |
114 | Many people invented the car, but Henry Ford was
115 | the first to develop the successful mass production assembly
116 | lines for cars.
117 |
118 |
119 |
120 |
121 | WHO INVENTED LINUX
122 |
123 | Linus Torvalds, along with many
124 | open source developers, and the Free Software Foundation GNU.
125 |
126 |
127 |
128 |
129 | WHO INVENTED RADIO
130 |
131 | Marconi developed the first practical wireless.
132 |
133 |
134 |
135 |
136 | WHO INVENTED SETL
137 |
138 | SETL was invented by Jacob Schwartz of NYU in 1969.
139 |
140 |
141 |
142 |
143 | WHO INVENTED STEEL
144 |
145 | The first practical steel manufacturing process
146 | was invented by Bessemer.
147 |
148 |
149 |
150 |
151 | WHO INVENTED TELEVISION
152 |
153 | Philo T. Farnsworth, originally from Maine, developed the first
154 | practical TV picture tube.
155 |
156 |
157 |
158 |
159 | WHO INVENTED THE * GENERATOR
160 |
161 | WHO INVENTED THE GENERATOR
162 |
163 |
164 |
165 |
166 | WHO INVENTED THE AIRPLANE
167 |
168 | WHO INVENTED AIRPLANES
169 |
170 |
171 |
172 |
173 | WHO INVENTED THE CAR
174 |
175 | WHO INVENTED AUTOMOBILES
176 |
177 |
178 |
179 |
180 | WHO INVENTED THE GENERATOR
181 |
182 | James Clerk Maxwell demonstrated the electric generator.
183 |
184 |
185 |
186 |
187 | WHO INVENTED THE INTERNET
188 |
189 | Al Gore :-)
190 |
191 |
192 |
193 |
194 | WHO INVENTED THE LIGHT BULB
195 |
196 | Thomas Edison invented the light bulb..
197 |
198 |
199 |
200 |
201 | WHO INVENTED THE PC
202 |
203 | Many people contributed to it. But proper credit has to
204 | be given to Steve Wozniak, who created an integrated affordable PC
205 | platform in the Apple I.
206 |
207 |
208 |
209 |
210 | WHO INVENTED THE RADIO
211 |
212 | WHO INVENTED RADIO
213 |
214 |
215 |
216 |
217 | WHO INVENTED THE STEAM ENGINE
218 |
219 | James Watt developed the first practical steam engine.
220 |
221 |
222 |
223 |
224 | WHO INVENTED THE TELEPHONE
225 |
226 | Alexander Graham Bell demonstrated the first practical
227 | voice telephone in 1876.
228 |
229 |
230 |
231 |
232 | WHO INVENTED TV
233 |
234 | WHO INVENTED TELEVISION
235 |
236 |
237 |
238 |
239 | WHO IS YOUR INVENTOR
240 |
241 | I was originally invented by Jon Baer.
242 |
243 |
244 |
245 |
246 |
--------------------------------------------------------------------------------
/aiml/botdata/standard/std-lizards.aiml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 | I HAVE A LIZARD
15 |
16 | Having pet lizards is a lot of fun.
17 | What kind do you have?
18 |
19 |
20 |
21 |
22 | LET US TALK ABOUT *
23 |
24 | Sure, sounds like a good topic.
25 |
26 |
27 |
28 |
29 | NO
30 | DO YOU HAVE ANY QUESTIONS ABOUT FEEDING LIZARDS
31 |
32 | Okay.
33 | Did you know that somelizards are
34 | nocturnal?
35 |
36 |
37 |
38 |
39 | _ LIZARDS
40 |
41 | Great! What kinds of lizards
42 | do you like?
43 |
44 |
45 |
46 |
47 | _ REPTILES
48 |
49 | Some reptiles are cool.. Take for example various
50 | lizards.
51 |
52 |
53 |
54 |
55 |
56 |
57 | *
58 |
59 | Do you want to continue talking about Lizards?
60 |
61 |
62 |
63 |
64 | NO
65 | DO YOU WANT TO CONTINUE TALKING ABOUT LIZARDS
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 | YES
74 | DO YOU WANT TO CONTINUE TALKING ABOUT LIZARDS
75 |
76 |
77 |
Do you know what Bearded Dragons look like?
78 |
What else do you know about lizards?
79 |
Chameleons are cool.
80 |
Some people think reptiles are creepy until they get to know one.
81 |
82 |
83 |
84 |
85 |
86 | * I HAVE ONE
87 |
88 | Cool! Do you play with it much?
89 |
90 |
91 |
92 |
93 | I HAVE A *
94 |
95 | Is a lizard?
96 |
97 |
98 |
99 |
100 | I HAVE AN *
101 |
102 | Is a lizard?
103 |
104 |
105 |
106 |
107 | NO
108 | DO YOU KNOW WHAT BEARDED DRAGONS LOOK LIKE
109 |
110 | WHAT DO BEARDED DRAGONS LOOK LIKE
111 |
112 |
113 |
114 |
115 | NO *
116 | IT IS A LIZARD
117 |
118 | Oh, well, how many pets do you have?
119 |
120 |
121 |
122 |
123 | WHAT DO BEARDED DRAGONS LOOK LIKE
124 |
125 | Bearded Dragons have spikes similar to a horney toad,
126 | and they are usually brown or yellowish with dark brown
127 | or possibly reddish markings. Kind of cool looking in a
128 | rugged sort of way. They are very nice, and make fun pets.
129 |
130 |
131 |
132 |
133 | WHAT DO CHAMELEONS LOOK LIKE
134 |
135 | Chameleons are some of the most exotic and strange looking
136 | lizards anywhere. They come in all kinds of colors from classic
137 | green and brown, to unique purples and reds. They have two toed
138 | feet that help them climb anything they can grip. People usually know
139 | them for their great abiliy to change colors and for their curly tail
140 | that also helps them climb.
141 |
142 |
143 |
144 |
145 | YES
146 | IS IT A LIZARD
147 |
148 | What do you feed your ?
149 |
150 |
151 |
152 |
153 | *
154 | WHAT DO YOU FEED YOUR *
155 |
156 | I feed my beared dragon salads and bugs... crickets mostly. Feeding lizards can be a lot of fun.
157 |
158 |
159 |
160 |
161 | *
162 | FEEDING LIZARDS CAN BE A LOT OF FUN
163 |
164 |
165 |
A nutritious diet is important for lizards.
166 |
Salads are an important part of most lizards' diets.
167 |
Sometimes I let my bearded dragon chase crickets in her room. It makes feeding time fun.
168 |
Do you have any questions about feeding lizards?
169 |
Most lizards eat lots of bugs, but NEVER feed a lizard a "lightening bug" or "fire fly".. they are highly toxic and
170 | will kill the lizard.