├── .gitignore ├── LICENSE ├── README.md └── bots ├── alice2 ├── aiml │ ├── animal.aiml │ ├── bot_profile.aiml │ ├── client_profile.aiml │ ├── contactaction.aiml │ ├── contactfunctions.aiml │ ├── date.aiml │ ├── dialog.aiml │ ├── familiar.aiml │ ├── firstrest.aiml │ ├── help.aiml │ ├── inappropriate.aiml │ ├── inquiry.aiml │ ├── insults.aiml │ ├── keywords.aiml │ ├── knowledge.aiml │ ├── lists.aiml │ ├── oob.aiml │ ├── personality.aiml │ ├── picture.aiml │ ├── profanity.aiml │ ├── reductions1.aiml │ ├── reductions2.aiml │ ├── reductions_update.aiml │ ├── roman.aiml │ ├── rsvp.aiml │ ├── sraix.aiml │ ├── sraix_combine.aiml │ ├── that.aiml │ ├── train.aiml │ ├── triple.aiml │ ├── udc.aiml │ ├── update.aiml │ └── utilities.aiml ├── maps │ ├── be2been.txt │ ├── be2being.txt │ ├── be2is.txt │ ├── be2was.txt │ ├── been2be.txt │ ├── being2be.txt │ ├── er2est.txt │ ├── est2er.txt │ ├── familiargender.txt │ ├── familiarpredicate.txt │ ├── familiarpronoun.txt │ ├── gendermap.txt │ ├── gendername.txt │ ├── is2be.txt │ ├── name2number.txt │ ├── nation2capital.txt │ ├── next.txt │ ├── number2ordinal.txt │ ├── opposite.txt │ ├── ordinal2number.txt │ ├── phonetic.txt │ ├── profile2predicate.txt │ ├── rhyme.txt │ ├── sign2date.txt │ ├── state2capital.txt │ ├── state2largestcity.txt │ ├── tomorrow.txt │ └── was2be.txt ├── sets │ ├── abc.txt │ ├── animal.txt │ ├── animals.txt │ ├── article.txt │ ├── be.txt │ ├── been.txt │ ├── being.txt │ ├── bird.txt │ ├── color.txt │ ├── digit.txt │ ├── entity.txt │ ├── erdown.txt │ ├── erup.txt │ ├── estdown.txt │ ├── estup.txt │ ├── evildoers.txt │ ├── familiarname.txt │ ├── fastfood.txt │ ├── foo.txt │ ├── food.txt │ ├── gender.txt │ ├── is.txt │ ├── language.txt │ ├── letter.txt │ ├── modal.txt │ ├── month.txt │ ├── name.txt │ ├── nation.txt │ ├── numbername.txt │ ├── ordinal.txt │ ├── place.txt │ ├── preposition.txt │ ├── profile.txt │ ├── pronoun.txt │ ├── pronouns.txt │ ├── quantifier.txt │ ├── spatialprep.txt │ ├── sphere.txt │ ├── starsign.txt │ ├── state.txt │ ├── state2.txt │ ├── was.txt │ ├── weekday.txt │ ├── wet.txt │ └── wh.txt ├── substitutions │ ├── denormal.txt │ ├── gender.txt │ ├── normal.txt │ ├── person.txt │ └── person2.txt └── system │ ├── aiml.xsd │ ├── copyright.txt │ ├── predicates.txt │ ├── properties.txt │ └── triples.txt ├── currentevents └── aiml │ ├── favorites.aiml │ ├── recommendations.aiml │ └── udc.aiml ├── jokebot └── aiml │ ├── jokes.aiml │ └── limericks.aiml ├── russian ├── aiml │ ├── greeting.aiml │ ├── knowledge.aiml │ ├── reply.aiml │ └── udc.aiml ├── sets │ ├── digit.txt │ ├── flowers&plants.txt │ ├── letter.txt │ ├── month.txt │ ├── name.txt │ └── weekday.txt ├── skills │ └── math.groovy └── system │ └── bot.properties └── wndef └── aiml ├── default.aiml ├── wndefs0.aiml ├── wndefs1.aiml ├── wndefs10.aiml ├── wndefs11.aiml ├── wndefs12.aiml ├── wndefs13.aiml ├── wndefs14.aiml ├── wndefs15.aiml ├── wndefs2.aiml ├── wndefs3.aiml ├── wndefs4.aiml ├── wndefs5.aiml ├── wndefs6.aiml ├── wndefs7.aiml ├── wndefs8.aiml └── wndefs9.aiml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/README.md -------------------------------------------------------------------------------- /bots/alice2/aiml/animal.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/aiml/animal.aiml -------------------------------------------------------------------------------- /bots/alice2/aiml/bot_profile.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/aiml/bot_profile.aiml -------------------------------------------------------------------------------- /bots/alice2/aiml/client_profile.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/aiml/client_profile.aiml -------------------------------------------------------------------------------- /bots/alice2/aiml/contactaction.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/aiml/contactaction.aiml -------------------------------------------------------------------------------- /bots/alice2/aiml/contactfunctions.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/aiml/contactfunctions.aiml -------------------------------------------------------------------------------- /bots/alice2/aiml/date.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/aiml/date.aiml -------------------------------------------------------------------------------- /bots/alice2/aiml/dialog.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/aiml/dialog.aiml -------------------------------------------------------------------------------- /bots/alice2/aiml/familiar.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/aiml/familiar.aiml -------------------------------------------------------------------------------- /bots/alice2/aiml/firstrest.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/aiml/firstrest.aiml -------------------------------------------------------------------------------- /bots/alice2/aiml/help.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/aiml/help.aiml -------------------------------------------------------------------------------- /bots/alice2/aiml/inappropriate.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/aiml/inappropriate.aiml -------------------------------------------------------------------------------- /bots/alice2/aiml/inquiry.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/aiml/inquiry.aiml -------------------------------------------------------------------------------- /bots/alice2/aiml/insults.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/aiml/insults.aiml -------------------------------------------------------------------------------- /bots/alice2/aiml/keywords.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/aiml/keywords.aiml -------------------------------------------------------------------------------- /bots/alice2/aiml/knowledge.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/aiml/knowledge.aiml -------------------------------------------------------------------------------- /bots/alice2/aiml/lists.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/aiml/lists.aiml -------------------------------------------------------------------------------- /bots/alice2/aiml/oob.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/aiml/oob.aiml -------------------------------------------------------------------------------- /bots/alice2/aiml/personality.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/aiml/personality.aiml -------------------------------------------------------------------------------- /bots/alice2/aiml/picture.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/aiml/picture.aiml -------------------------------------------------------------------------------- /bots/alice2/aiml/profanity.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/aiml/profanity.aiml -------------------------------------------------------------------------------- /bots/alice2/aiml/reductions1.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/aiml/reductions1.aiml -------------------------------------------------------------------------------- /bots/alice2/aiml/reductions2.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/aiml/reductions2.aiml -------------------------------------------------------------------------------- /bots/alice2/aiml/reductions_update.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/aiml/reductions_update.aiml -------------------------------------------------------------------------------- /bots/alice2/aiml/roman.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/aiml/roman.aiml -------------------------------------------------------------------------------- /bots/alice2/aiml/rsvp.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/aiml/rsvp.aiml -------------------------------------------------------------------------------- /bots/alice2/aiml/sraix.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/aiml/sraix.aiml -------------------------------------------------------------------------------- /bots/alice2/aiml/sraix_combine.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/aiml/sraix_combine.aiml -------------------------------------------------------------------------------- /bots/alice2/aiml/that.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/aiml/that.aiml -------------------------------------------------------------------------------- /bots/alice2/aiml/train.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/aiml/train.aiml -------------------------------------------------------------------------------- /bots/alice2/aiml/triple.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/aiml/triple.aiml -------------------------------------------------------------------------------- /bots/alice2/aiml/udc.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/aiml/udc.aiml -------------------------------------------------------------------------------- /bots/alice2/aiml/update.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/aiml/update.aiml -------------------------------------------------------------------------------- /bots/alice2/aiml/utilities.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/aiml/utilities.aiml -------------------------------------------------------------------------------- /bots/alice2/maps/be2been.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/maps/be2been.txt -------------------------------------------------------------------------------- /bots/alice2/maps/be2being.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/maps/be2being.txt -------------------------------------------------------------------------------- /bots/alice2/maps/be2is.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/maps/be2is.txt -------------------------------------------------------------------------------- /bots/alice2/maps/be2was.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/maps/be2was.txt -------------------------------------------------------------------------------- /bots/alice2/maps/been2be.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/maps/been2be.txt -------------------------------------------------------------------------------- /bots/alice2/maps/being2be.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/maps/being2be.txt -------------------------------------------------------------------------------- /bots/alice2/maps/er2est.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/maps/er2est.txt -------------------------------------------------------------------------------- /bots/alice2/maps/est2er.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/maps/est2er.txt -------------------------------------------------------------------------------- /bots/alice2/maps/familiargender.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/maps/familiargender.txt -------------------------------------------------------------------------------- /bots/alice2/maps/familiarpredicate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/maps/familiarpredicate.txt -------------------------------------------------------------------------------- /bots/alice2/maps/familiarpronoun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/maps/familiarpronoun.txt -------------------------------------------------------------------------------- /bots/alice2/maps/gendermap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/maps/gendermap.txt -------------------------------------------------------------------------------- /bots/alice2/maps/gendername.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/maps/gendername.txt -------------------------------------------------------------------------------- /bots/alice2/maps/is2be.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/maps/is2be.txt -------------------------------------------------------------------------------- /bots/alice2/maps/name2number.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/maps/name2number.txt -------------------------------------------------------------------------------- /bots/alice2/maps/nation2capital.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/maps/nation2capital.txt -------------------------------------------------------------------------------- /bots/alice2/maps/next.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/maps/next.txt -------------------------------------------------------------------------------- /bots/alice2/maps/number2ordinal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/maps/number2ordinal.txt -------------------------------------------------------------------------------- /bots/alice2/maps/opposite.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/maps/opposite.txt -------------------------------------------------------------------------------- /bots/alice2/maps/ordinal2number.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/maps/ordinal2number.txt -------------------------------------------------------------------------------- /bots/alice2/maps/phonetic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/maps/phonetic.txt -------------------------------------------------------------------------------- /bots/alice2/maps/profile2predicate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/maps/profile2predicate.txt -------------------------------------------------------------------------------- /bots/alice2/maps/rhyme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/maps/rhyme.txt -------------------------------------------------------------------------------- /bots/alice2/maps/sign2date.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/maps/sign2date.txt -------------------------------------------------------------------------------- /bots/alice2/maps/state2capital.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/maps/state2capital.txt -------------------------------------------------------------------------------- /bots/alice2/maps/state2largestcity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/maps/state2largestcity.txt -------------------------------------------------------------------------------- /bots/alice2/maps/tomorrow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/maps/tomorrow.txt -------------------------------------------------------------------------------- /bots/alice2/maps/was2be.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/maps/was2be.txt -------------------------------------------------------------------------------- /bots/alice2/sets/abc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/abc.txt -------------------------------------------------------------------------------- /bots/alice2/sets/animal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/animal.txt -------------------------------------------------------------------------------- /bots/alice2/sets/animals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/animals.txt -------------------------------------------------------------------------------- /bots/alice2/sets/article.txt: -------------------------------------------------------------------------------- 1 | a 2 | an 3 | the 4 | -------------------------------------------------------------------------------- /bots/alice2/sets/be.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/be.txt -------------------------------------------------------------------------------- /bots/alice2/sets/been.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/been.txt -------------------------------------------------------------------------------- /bots/alice2/sets/being.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/being.txt -------------------------------------------------------------------------------- /bots/alice2/sets/bird.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/bird.txt -------------------------------------------------------------------------------- /bots/alice2/sets/color.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/color.txt -------------------------------------------------------------------------------- /bots/alice2/sets/digit.txt: -------------------------------------------------------------------------------- 1 | 0 2 | 1 3 | 2 4 | 3 5 | 4 6 | 5 7 | 6 8 | 7 9 | 8 10 | 9 11 | -------------------------------------------------------------------------------- /bots/alice2/sets/entity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/entity.txt -------------------------------------------------------------------------------- /bots/alice2/sets/erdown.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/erdown.txt -------------------------------------------------------------------------------- /bots/alice2/sets/erup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/erup.txt -------------------------------------------------------------------------------- /bots/alice2/sets/estdown.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/estdown.txt -------------------------------------------------------------------------------- /bots/alice2/sets/estup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/estup.txt -------------------------------------------------------------------------------- /bots/alice2/sets/evildoers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/evildoers.txt -------------------------------------------------------------------------------- /bots/alice2/sets/familiarname.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/familiarname.txt -------------------------------------------------------------------------------- /bots/alice2/sets/fastfood.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/fastfood.txt -------------------------------------------------------------------------------- /bots/alice2/sets/foo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/foo.txt -------------------------------------------------------------------------------- /bots/alice2/sets/food.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/food.txt -------------------------------------------------------------------------------- /bots/alice2/sets/gender.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/gender.txt -------------------------------------------------------------------------------- /bots/alice2/sets/is.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/is.txt -------------------------------------------------------------------------------- /bots/alice2/sets/language.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/language.txt -------------------------------------------------------------------------------- /bots/alice2/sets/letter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/letter.txt -------------------------------------------------------------------------------- /bots/alice2/sets/modal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/modal.txt -------------------------------------------------------------------------------- /bots/alice2/sets/month.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/month.txt -------------------------------------------------------------------------------- /bots/alice2/sets/name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/name.txt -------------------------------------------------------------------------------- /bots/alice2/sets/nation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/nation.txt -------------------------------------------------------------------------------- /bots/alice2/sets/numbername.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/numbername.txt -------------------------------------------------------------------------------- /bots/alice2/sets/ordinal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/ordinal.txt -------------------------------------------------------------------------------- /bots/alice2/sets/place.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/place.txt -------------------------------------------------------------------------------- /bots/alice2/sets/preposition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/preposition.txt -------------------------------------------------------------------------------- /bots/alice2/sets/profile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/profile.txt -------------------------------------------------------------------------------- /bots/alice2/sets/pronoun.txt: -------------------------------------------------------------------------------- 1 | I 2 | you 3 | he 4 | she 5 | they 6 | we 7 | -------------------------------------------------------------------------------- /bots/alice2/sets/pronouns.txt: -------------------------------------------------------------------------------- 1 | he 2 | she 3 | it 4 | they 5 | we 6 | -------------------------------------------------------------------------------- /bots/alice2/sets/quantifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/quantifier.txt -------------------------------------------------------------------------------- /bots/alice2/sets/spatialprep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/spatialprep.txt -------------------------------------------------------------------------------- /bots/alice2/sets/sphere.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/sphere.txt -------------------------------------------------------------------------------- /bots/alice2/sets/starsign.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/starsign.txt -------------------------------------------------------------------------------- /bots/alice2/sets/state.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/state.txt -------------------------------------------------------------------------------- /bots/alice2/sets/state2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/state2.txt -------------------------------------------------------------------------------- /bots/alice2/sets/was.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/was.txt -------------------------------------------------------------------------------- /bots/alice2/sets/weekday.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/weekday.txt -------------------------------------------------------------------------------- /bots/alice2/sets/wet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/wet.txt -------------------------------------------------------------------------------- /bots/alice2/sets/wh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/sets/wh.txt -------------------------------------------------------------------------------- /bots/alice2/substitutions/denormal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/substitutions/denormal.txt -------------------------------------------------------------------------------- /bots/alice2/substitutions/gender.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/substitutions/gender.txt -------------------------------------------------------------------------------- /bots/alice2/substitutions/normal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/substitutions/normal.txt -------------------------------------------------------------------------------- /bots/alice2/substitutions/person.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/substitutions/person.txt -------------------------------------------------------------------------------- /bots/alice2/substitutions/person2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/substitutions/person2.txt -------------------------------------------------------------------------------- /bots/alice2/system/aiml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/system/aiml.xsd -------------------------------------------------------------------------------- /bots/alice2/system/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/system/copyright.txt -------------------------------------------------------------------------------- /bots/alice2/system/predicates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/system/predicates.txt -------------------------------------------------------------------------------- /bots/alice2/system/properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/system/properties.txt -------------------------------------------------------------------------------- /bots/alice2/system/triples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/alice2/system/triples.txt -------------------------------------------------------------------------------- /bots/currentevents/aiml/favorites.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/currentevents/aiml/favorites.aiml -------------------------------------------------------------------------------- /bots/currentevents/aiml/recommendations.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/currentevents/aiml/recommendations.aiml -------------------------------------------------------------------------------- /bots/currentevents/aiml/udc.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/currentevents/aiml/udc.aiml -------------------------------------------------------------------------------- /bots/jokebot/aiml/jokes.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/jokebot/aiml/jokes.aiml -------------------------------------------------------------------------------- /bots/jokebot/aiml/limericks.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/jokebot/aiml/limericks.aiml -------------------------------------------------------------------------------- /bots/russian/aiml/greeting.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/russian/aiml/greeting.aiml -------------------------------------------------------------------------------- /bots/russian/aiml/knowledge.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/russian/aiml/knowledge.aiml -------------------------------------------------------------------------------- /bots/russian/aiml/reply.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/russian/aiml/reply.aiml -------------------------------------------------------------------------------- /bots/russian/aiml/udc.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/russian/aiml/udc.aiml -------------------------------------------------------------------------------- /bots/russian/sets/digit.txt: -------------------------------------------------------------------------------- 1 | 0 2 | 1 3 | 2 4 | 3 5 | 4 6 | 5 7 | 6 8 | 7 9 | 8 10 | 9 11 | -------------------------------------------------------------------------------- /bots/russian/sets/flowers&plants.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/russian/sets/flowers&plants.txt -------------------------------------------------------------------------------- /bots/russian/sets/letter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/russian/sets/letter.txt -------------------------------------------------------------------------------- /bots/russian/sets/month.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/russian/sets/month.txt -------------------------------------------------------------------------------- /bots/russian/sets/name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/russian/sets/name.txt -------------------------------------------------------------------------------- /bots/russian/sets/weekday.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/russian/sets/weekday.txt -------------------------------------------------------------------------------- /bots/russian/skills/math.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/russian/skills/math.groovy -------------------------------------------------------------------------------- /bots/russian/system/bot.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/russian/system/bot.properties -------------------------------------------------------------------------------- /bots/wndef/aiml/default.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/wndef/aiml/default.aiml -------------------------------------------------------------------------------- /bots/wndef/aiml/wndefs0.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/wndef/aiml/wndefs0.aiml -------------------------------------------------------------------------------- /bots/wndef/aiml/wndefs1.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/wndef/aiml/wndefs1.aiml -------------------------------------------------------------------------------- /bots/wndef/aiml/wndefs10.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/wndef/aiml/wndefs10.aiml -------------------------------------------------------------------------------- /bots/wndef/aiml/wndefs11.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/wndef/aiml/wndefs11.aiml -------------------------------------------------------------------------------- /bots/wndef/aiml/wndefs12.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/wndef/aiml/wndefs12.aiml -------------------------------------------------------------------------------- /bots/wndef/aiml/wndefs13.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/wndef/aiml/wndefs13.aiml -------------------------------------------------------------------------------- /bots/wndef/aiml/wndefs14.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/wndef/aiml/wndefs14.aiml -------------------------------------------------------------------------------- /bots/wndef/aiml/wndefs15.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/wndef/aiml/wndefs15.aiml -------------------------------------------------------------------------------- /bots/wndef/aiml/wndefs2.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/wndef/aiml/wndefs2.aiml -------------------------------------------------------------------------------- /bots/wndef/aiml/wndefs3.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/wndef/aiml/wndefs3.aiml -------------------------------------------------------------------------------- /bots/wndef/aiml/wndefs4.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/wndef/aiml/wndefs4.aiml -------------------------------------------------------------------------------- /bots/wndef/aiml/wndefs5.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/wndef/aiml/wndefs5.aiml -------------------------------------------------------------------------------- /bots/wndef/aiml/wndefs6.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/wndef/aiml/wndefs6.aiml -------------------------------------------------------------------------------- /bots/wndef/aiml/wndefs7.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/wndef/aiml/wndefs7.aiml -------------------------------------------------------------------------------- /bots/wndef/aiml/wndefs8.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/wndef/aiml/wndefs8.aiml -------------------------------------------------------------------------------- /bots/wndef/aiml/wndefs9.aiml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIMLang/aiml-bots/HEAD/bots/wndef/aiml/wndefs9.aiml --------------------------------------------------------------------------------