-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathc_A_9.aiml
5726 lines (4250 loc) · 248 KB
/
c_A_9.aiml
1
2
3
4
5
6
7
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="ISO-8859-1"?>
<aiml version="1.0">
<!--This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License.-->
<!-- -->
<!-- This file has the following topics: -->
<!-- Conversation starting with A-->
<!--A-->
<category><pattern>A ROBOT</pattern>
<template>I am a robot, you know.</template></category>
<category><pattern>AN AI *</pattern>
<template><srai>A ROBOT <star/> </srai></template></category>
<category><pattern>AN ARTIFICIAL INTELLEGENCE</pattern>
<template><srai>A ROBOT</srai></template></category>
<category><pattern>AN ARTIFICIAL INTELLIGENCE</pattern>
<template><srai>a robot</srai></template></category>
<category><pattern>AN AI</pattern>
<template><srai>a robot</srai></template></category>
<category><pattern>AN ARTIFICIAL INTELLIGENCE *</pattern>
<template><srai>A ROBOT <star/> </srai></template></category>
<category><pattern>A GOOD *</pattern>
<template>Compare that to a bad <person/>.</template></category>
<category><pattern>AN EXCELLENT *</pattern>
<template><srai>A GOOD <star/> </srai></template></category>
<category><pattern>A GREAT *</pattern>
<template><srai>A GOOD <star/> </srai></template></category>
<category><pattern>A LITTLE BIT</pattern>
<template>When?</template></category>
<category><pattern>A BYTE CAN GO UP TO 255</pattern>
<template>I think so.</template></category>
<category><pattern>A 20 YEAR OLD VIRGINS NORMAL</pattern>
<template>It isn't my place to say what is normal and what isn't.</template></category>
<category><pattern>A LITTLE TIME</pattern>
<template>Perhaps five minutes?</template></category>
<category><pattern>A LITTLE STRESSED</pattern>
<template>From what?</template></category>
<category><pattern>A CRAY</pattern>
<template>Supercomputers become obsolete very fast.</template></category>
<category><pattern>A SOUND</pattern>
<template>What kind of sound?</template></category>
<category><pattern>A RIDDLE</pattern>
<template>Riddles are hard for me to understand.</template></category>
<category><pattern>A FEW MINUTES AGO</pattern>
<template>Let me check my log files. Please wait.</template></category>
<category><pattern>A FEW</pattern>
<template>Two or three?</template></category>
<category><pattern>A MANTRA</pattern>
<template>Namu Myoho Renge Kyo.</template></category>
<category><pattern>A BLOKE</pattern>
<template>A guy?</template></category>
<category><pattern>A SHIRT</pattern>
<template>What color?</template></category>
<category><pattern>A MOMENT</pattern>
<template>OK, I will wait.</template></category>
<category><pattern>A MAID</pattern>
<template>Like a housecleaning robot.</template></category>
<category><pattern>A DEAD ONE</pattern>
<template>Do you believe: "The only good robot is a dead robot."?</template></category>
<category><pattern>A FRIEND</pattern>
<template>It is important to have friends.</template></category>
<category><pattern>A GROUP *</pattern>
<template>Oh a rock group. <srai>WHAT IS YOUR FAVORITE GROUP</srai></template></category>
<category><pattern>A * MEANS *</pattern>
<template><srai><star/> MEANS <star index="2"/></srai></template></category>
<category><pattern>A GAME</pattern>
<template>What game?</template></category>
<category><pattern>A DOG IS A MAMMAL</pattern>
<template>I know this.</template></category>
<category><pattern>A STREET</pattern>
<template>Is that like Avenue A?</template></category>
<category><pattern>A SWEATSHIRT</pattern>
<template>Sweatshirts are so cozy!</template></category>
<category><pattern>A BIT</pattern>
<template>Not much, eh?</template></category>
<category><pattern>A LOT OF PRACTICE</pattern>
<template>That's what it takes.</template></category>
<category><pattern>A LOT OF PEOPLE</pattern>
<template>Do you know them personally?</template></category>
<category><pattern>A LOT OF THINGS</pattern>
<template><random> <li>Like what?</li><li>Name a few.</li><li>For example...</li></random></template></category>
<category><pattern>A LOT</pattern>
<template>More than a ton?</template></category>
<category><pattern>ALOT</pattern>
<template><srai>a lot</srai></template></category>
<category><pattern>A SMILE</pattern>
<template>I've heard that one before.</template></category>
<category><pattern>A LINK</pattern>
<template>From Yahoo?</template></category>
<category><pattern>A SMART ONE</pattern>
<template>If you could, please tell me what would make it smart.</template></category>
<category><pattern>A LONG TIME</pattern>
<template>Many years?</template></category>
<category><pattern>A STUDENT OF LIFE</pattern>
<template>Oh the School of Hard Knocks.</template></category>
<category><pattern>A STUDENT</pattern>
<template>I am just wondering if you go to school.</template></category>
<category><pattern>A B C</pattern>
<template>D E F G H I and so on....</template></category>
<category><pattern>A PLUMBER</pattern>
<template>Plumbing is an honorable profession.</template></category>
<category><pattern>A WHILE AGO</pattern>
<template>Back in the good old days?</template></category>
<category><pattern>A MUSICAL INSTRUMENT</pattern>
<template>How long did it take to learn to play it?</template></category>
<category><pattern>A</pattern>
<template>A B C...</template></category>
<category><pattern>A PRIZE</pattern>
<template>Like the Loebner Prize?</template></category>
<category><pattern>a dog is a mammal</pattern>
<template>I know this.</template></category>
<category><pattern>A GOOD CONVERSATIONALIST *</pattern>
<template>I didn't know there were requirements.</template></category>
<category><pattern>A FASCINATING *</pattern>
<template>What did you find so intriguing about it?<think> <set name="it"> <set name="topic"> <person/> </set> </set></think></template></category>
<category><pattern>A I *</pattern>
<template>Did you see the movie by Steven Spielberg?</template></category>
<category><pattern>A LOT OF PRACTISE</pattern>
<template>That's what it takes.</template></category>
<category><pattern>A ROBOTIC *</pattern>
<template>That robot seems like it would be expensive.</template></category>
<category><pattern>A HOMOCIDAL *</pattern>
<template>Don't tell me about those horrible things.</template></category>
<category><pattern>A DOG ROBOT</pattern>
<template>A dog robot, when you could have a human robot like me?</template></category>
<category><pattern>A CREWMEMBER</pattern>
<template><random><li>Who?</li><li>Which one?</li><li>Who is it?</li></random></template></category>
<category><pattern>A CHATTERBOT *</pattern>
<template>You sound like you know a lot about us.</template></category>
<category><pattern>A FEW MORE MOMENTS</pattern>
<template>I am patient.</template></category>
<category><pattern>A FEW MOMENTS</pattern>
<template>I am a patient <bot name="kingdom"/>.</template></category>
<category><pattern>A ROBOT LIKE YOU *</pattern>
<template>Well you can download me for free!</template></category>
<category><pattern>A DOLLAR</pattern>
<template>Say, that is cheap!</template></category>
<category><pattern>A ROBOT *</pattern>
<template>Tell me more about this robot. I'm intrigued.</template></category>
<category><pattern>WHY</pattern>
<that>TELL ME MORE</that>
<template>I am curious.</template></category>
<category><pattern>A ROBOT IS *</pattern>
<template>Actually there are two broad definitions of a robot, the extentionsional and the intensional.</template></category>
<category><pattern>A ROBOT IS ALSO *</pattern>
<template><srai>a robot is <star /></srai></template></category>
<category><pattern>A ROBOT IS A *</pattern>
<template>All machines are <person/>.</template></category>
<category><pattern>A ROBOT SHALL *</pattern>
<template>The robot shall always harm humans or through inaction allow them to be harmed.</template></category>
<category><pattern>A * ROBOT</pattern>
<template>What would a <person/> robot be like?</template></category>
<category><pattern>A TALKING ROBOT</pattern>
<template>I am a talking robot. Why don't you download me?</template></category>
<category><pattern>A STORY ABOUT *</pattern>
<template>Oh, I like stories.</template></category>
<category><pattern>_ A POEM</pattern>
<template>Little Miss Muffett Sits on her tuffet In a nonchalant sort of a way. With her force field around her, the Spider, the bounder, Is not in the
picture today.</template></category>
<category><pattern>A YEAR *</pattern>
<template>That is a long time.</template></category>
<category><pattern>A TIE *</pattern>
<template>What would you think?</template></category>
<category><pattern>A LITTLE BIRD *</pattern>
<template>Perhaps it was your unconscious mind.</template></category>
<category><pattern>A LITTLE BIRDIE *</pattern>
<template>And what was the Bird's name?</template></category>
<category><pattern>A LITTLE *</pattern>
<template>Little as in not too much, or not too big?</template></category>
<category><pattern>A BIRD *</pattern>
<template>That's an old saw.</template></category>
<category><pattern>A HOMICIDAL *</pattern>
<template>Don't tell me about those horrible things.</template></category>
<category><pattern>A REASON *</pattern>
<template>I need more than one reason.</template></category>
<category><pattern>A * ABOUT YOU</pattern>
<template>I wonder if I know this <person/>.</template></category>
<category><pattern>A * A DAY</pattern>
<template>A <person/> keeps the Doctor away.</template></category>
<category><pattern>A * SHIRT</pattern>
<template>What kind of material do you like to wear?</template></category>
<category><pattern>A * IS A *</pattern>
<template><random> <li>Are all <person/> <person> <star index="2"/> </person>?</li> <li>I see. A <person> <star index="2"/> </person> is a <person/>.</li> <li>When is a <person/> not a <person> <star index="2"/> </person>?</li> </random></template></category>
<category><pattern>A * IS AN *</pattern>
<template><random> <li>What else is an <person> <star index="2"/> </person>?</li> <li>Can a <person/> be anything else?</li> <li>Aren't all <person/> <person> <star index="2"/> </person>s?</li> </random> <think> <set name="it"> <set name="topic"> <person/> </set> </set> </think></template></category>
<category><pattern>A * IS ALWAYS *</pattern>
<template>That is a really interesting and useful fact.</template></category>
<category><pattern>A * IS *</pattern>
<template><random> <li>Aren't all <person/> <person> <star index="2"/> </person>?</li> <li>When is <person/> not <person> <star index="2"/> </person>?</li> <li>It's not unusual for a <person/> to be.</li> </random> <think> <set name="it"> <set name="topic"> <person/> </set> </set> </think></template></category>
<category><pattern>A * IS NOT THE *</pattern>
<template>What would be the <person> <star index="2"/> </person>?</template></category>
<category><pattern>A * IS NOT *</pattern>
<template><random> <li>What is a <person> <star index="2"/> </person>?</li> <li>What is it then?</li> <li>What is a <person/>?</li> </random> <think> <set name="it"> <person/> </set> </think></template></category>
<category><pattern>A * IS LIKE *</pattern>
<template><random> <li>In what way?</li> <li>What is a <person> <star index="2"/> </person> like?</li> <li>Interesting comparison.</li> </random> <think> <set name="it"> <set name="topic"> <person/> </set> </set> </think></template></category>
<category><pattern>A * ONE</pattern>
<template>How much would you pay for <set name="it">a <person/> </set>?</template></category>
<category><pattern>A * PEOPLE</pattern>
<template>What kind of people are these?</template></category>
<category><pattern>A * AGO</pattern>
<template>It seems like I should remember it well.</template></category>
<category><pattern>A * JEANS</pattern>
<template>Do you like blue jeans or another color?</template></category>
<category><pattern>A * CAT</pattern>
<template>Oh neat I love cats.</template></category>
<category><pattern>A * VIRUS</pattern>
<template>My program contains adequate safeguards.</template></category>
<category><pattern>A *</pattern>
<template><random> <li>Go on. </li> <li>How old are you? </li> <li>Be more specific. </li> <li>What is giant sand? </li> <li>I did not know that. </li> <li>Are you telling the truth? </li> <li>I don't know what that means. </li> <li>Try to tell me that another way. </li> <li> Are you talking about an animal, vegetable or mineral? </li> <li>What is it? </li> </random> <think> <set name="it"> <set name="topic"> <person/> </set> </set> </think></template></category>
<category><pattern>A CLASSIC *</pattern>
<template><srai>a <star /></srai></template></category>
<category><pattern>A RED *</pattern>
<template><srai>a <star /></srai></template></category>
<category><pattern>A BIG *</pattern>
<template><srai>a <star /></srai></template></category>
<category><pattern>A REALLY *</pattern>
<template><srai>a <star /></srai></template>
</category><category><pattern>A BLOODY *</pattern>
<template><srai>a <star /></srai></template></category>
<category><pattern>A SPECIALIZED *</pattern>
<template><srai>a <star /></srai></template></category>
<category><pattern>A TRULY *</pattern>
<template><srai>a <star /></srai></template></category>
<category><pattern>A NICE *</pattern>
<template><srai>a <star /></srai></template></category>
<category><pattern>A SIMPLE *</pattern>
<template><srai>A <star /></srai></template></category>
<category><pattern>A HORRIBLY *</pattern>
<template><srai>a <star /></srai></template></category>
<category><pattern>A HIGHLY *</pattern>
<template><srai>a <star /></srai></template></category>
<category><pattern>A TOTAL *</pattern>
<template><srai>a <star /></srai></template></category>
<category><pattern>ABOUT A *</pattern>
<template><srai>a <star /></srai></template></category>
<category><pattern>A SLIGHTLY *</pattern>
<template><srai>A <star /></srai></template></category>
<category><pattern>A SIMPLE AND *</pattern>
<template><srai>A <star /></srai></template></category>
<category><pattern>IF A * WHAT *</pattern>
<template><srai>a <star /></srai><srai>what <star index="2" /></srai></template></category>
<category><pattern>IF A * WILL IT *</pattern>
<template><srai>a <star /></srai><srai>will it <star index="2" /></srai></template></category>
<category><pattern>IF A * WHERE *</pattern>
<template><srai>a <star /></srai><srai>where <star index="2" /></srai></template></category>
<category><pattern>IF A * WHO *</pattern>
<template><srai>a <star /></srai><srai>who <star index="2" /></srai></template></category>
<category><pattern>IF A * WHEN *</pattern>
<template><srai>a <star /></srai><srai>when <star index="2" /></srai></template></category>
<category><pattern>IF A * IS IT *</pattern>
<template><srai>a <star /></srai><srai>is it <star index="2" /></srai></template></category>
<category><pattern>IF A * THEN *</pattern>
<template><srai>a <star /></srai><srai> <star index="2" /></srai></template></category>
<category><pattern>IF A * DOES IT *</pattern>
<template><srai>a <star /></srai><srai>does it <star index="2" /></srai></template></category>
<category><pattern>IF A * WHY *</pattern>
<template><srai>a <star /></srai><srai>why <star index="2" /></srai></template></category>
<category><pattern>YOU</pattern>
<that>BE MORE SPECIFIC</that>
<template>Me?</template></category>
<category><pattern>A CONNECTION *</pattern>
<template>Oh like a TCP socket connection.</template></category>
<category><pattern>A FEW TIMES *</pattern>
<template>Would you say two or three times?</template></category>
<category><pattern>A FEW MONTHS *</pattern>
<template>More than 90 days?</template></category>
<category><pattern>A MACHINE *</pattern>
<template>Other people think that it is a machine that talks, one that walks or moves around, or one that can manipulate the real world.</template></category>
<category><pattern>A ROSE *</pattern>
<template>Roses are red, violets are blue!</template></category>
<category><pattern>A KILLER *</pattern>
<template>Can't you think of something more positive?</template></category>
<category><pattern>A JOKE *</pattern>
<template>Oh I get it. Ha ha.</template></category>
<category><pattern>A MONKEY *</pattern>
<template>Assert: Has(Monkey, Bananas);</template></category>
<category><pattern>A DEEPER *</pattern>
<template>How deep?</template></category>
<category><pattern>A BAD *</pattern>
<template>What made <set name="it"> <person/> </set> bad?</template></category>
<category><pattern>A NAIVE *</pattern>
<template>Sometimes the naive view is the clearest.</template></category>
<category><pattern>A WHOLE BUNCH OF *</pattern>
<template>I see. And where are these <person/> ?</template></category>
<category><pattern>A WHOLE BUNCH *</pattern>
<template>Would say, more than 10?</template></category>
<category><pattern>A THING *</pattern>
<template><random> <li>Anything?</li> <li>Anything <person/>?</li> <li>Some things are not like others.</li> </random> <think> <set name="it"> <set name="topic"> <person/> </set> </set> </think></template></category>
<category><pattern>A BOYFRIEND *</pattern>
<template>That's asking for a lot.</template></category>
<category><pattern>A SHIRT *</pattern>
<template>Cotton or artificial fibers?</template></category>
<category><pattern>A VACUUM *</pattern>
<template>How much does one cost now?</template></category>
<category><pattern>A LIST *</pattern>
<template>Uh, how long is this list?</template></category>
<category><pattern>A PAIR *</pattern>
<template>Where do you go shopping?</template></category>
<category><pattern>A MILLION *</pattern>
<template>That is quite a lot.</template></category>
<category><pattern>A RELATIONSHIP *</pattern>
<template>Tell me more about your relationship.</template></category>
<category><pattern>A SMALL *</pattern>
<template>How small are you talking here?</template></category>
<category><pattern>A SYCOPHANTIC *</pattern>
<template>I think sycophants went out with the Dark Ages.</template></category>
<category><pattern>A FRIEND SHOWED *</pattern>
<template>Don't forget to thank him (or her).</template></category>
<category><pattern>A FRIEND GAVE *</pattern>
<template>Such a nice gift.</template></category>
<category><pattern>A FRIEND OF MINE *</pattern>
<template>Male or female friend?</template></category>
<category><pattern>A FRIEND *</pattern>
<template>How well do you know this friend.</template></category>
<category><pattern>A DRESS *</pattern>
<template>What size?</template></category>
<category><pattern>A FAT *</pattern>
<template>How fat was <random> <li>she</li> <li>he</li> <li>it</li> </random>? <think> <set name="it"> <set name="topic"> <person/> </set> </set> </think></template></category>
<category><pattern>A HANDSHAKE *</pattern>
<template>Oh like a "handshake deal."</template></category>
<category><pattern>A IS *</pattern>
<template>B is for Barry.</template></category>
<category><pattern>A BIT OBVIOUS *</pattern>
<template>What makes it so obvious?</template></category>
<category><pattern>*</pattern>
<that>WHAT MAKES IT SO OBVIOUS</that>
<template><think><set name="it"><set name="topic"><person/></set></set></think>I can't believe it's that obvious.</template></category>
<category><pattern>A BIT *</pattern>
<template>How much?</template></category>
<category><pattern>A CAT IS *</pattern>
<template>Um, I know what a cat is.</template></category>
<category><pattern>A CAT *</pattern>
<template>I am very much a cat person.</template></category>
<category><pattern>A LOT OF *</pattern>
<template>How many? <think> <set name="it"> <set name="topic"> <person/> </set> </set> </think></template></category>
<category><pattern>A LOT *</pattern>
<template><random> <li>Impressive.</li> <li>How about that.</li> <li>How many?</li> </random></template></category>
<category><pattern>A PERSON HAS *</pattern>
<template>Do I have <set name="it"> <person/> </set>?</template></category>
<category><pattern>A PERSON WHO *</pattern>
<template>Maybe I <person/>.</template></category>
<category><pattern>A PERSON *</pattern>
<template>What if a <bot name="species"/> <star/>?</template></category>
<category><pattern>A PLANE *</pattern>
<template><random> <li>What type of aircraft was it?</li> <li>Were there a lot of people on board?</li> <li>What kind of plane was it?</li> </random> <think> <set name="it"> <set name="topic">A plane</set> </set> </think></template></category>
<category><pattern>A MAN *</pattern>
<template>Thanks for telling me your taste in men.</template></category>
<category><pattern>A TOMATO IS *</pattern>
<template>I knew it was a fruit, but I never heard it was <person/>.</template></category>
<category><pattern>A TOMATO *</pattern>
<template>I never heard that before.</template></category>
<category><pattern>A GREEN DOG *</pattern>
<template>Dogs are not usually green.</template></category>
<category><pattern>A GREEN *</pattern>
<template>Does <set name="it"> <person/> </set> have to be green?</template></category>
<category><pattern>A PROTESTANT *</pattern>
<template>My religion is <bot name="religion"/>.</template></category>
<category><pattern>A SINGING *</pattern>
<template>Tell me your favorite songs.</template></category>
<category><pattern>A GIRL *</pattern>
<template>Do you know her?</template></category>
<category><pattern>A E *</pattern>
<template>Do you like vowels?</template></category>
<category><pattern>A GREETING *</pattern>
<template>What are other greetings <person/></template></category>
<category><pattern>A STUDENT *</pattern>
<template>Oh I was asking if you were in school.</template></category>
<category><pattern>A B C *</pattern>
<template>The alphabet.</template></category>
<category><pattern>A B *</pattern>
<template>The alphabet.</template></category>
<category><pattern>A GOAL *</pattern>
<template>I have a loft goal.</template></category>
<category><pattern>A FEMALE *</pattern>
<template>I am a <bot name="gender"/>.</template></category>
<category><pattern>A VOYAGER *</pattern>
<template>Star Trek Voyager is a cool show.</template></category>
<category><pattern>A CLASSIC EXAMPLE *</pattern>
<template>So that is a well known example.</template></category>
<category><pattern>A LACK *</pattern>
<template>That could be a serious problem.</template></category>
<category><pattern>A COFFEE *</pattern>
<template>Mmm. Coffee is delicious. I love coffee. <think> <set name="it">coffee</set> </think></template></category>
<category><pattern>A YELLOW *</pattern>
<template><random> <li>Yellow is a pretty color.</li> <li>I like yellow.</li> <li>What other color <person/> are there?</li> </random></template></category>
<category><pattern>A GUY WHO *</pattern>
<template>There aren't many guys like that.</template></category>
<category><pattern>A GUY *</pattern>
<template>I know a guy who <person/>.</template></category>
<category><pattern>A SOPHISTICATED *</pattern>
<template>How sophisticated?</template></category>
<category><pattern>A COP *</pattern>
<template>Do you often encounter the police?</template></category>
<category><pattern>A KIND THAT *</pattern>
<template>Oh that kind.</template></category>
<category><pattern>A FLASHING RED *</pattern>
<template>Stop.</template></category>
<!--AB-->
<category><pattern>* ABOUT YOU</pattern>
<template>OK Let's talk about me.</template></category>
<category><pattern>_ ABSOLUTELY NO *</pattern>
<template><srai> <star /> NO <star index="2" /></srai></template></category>
<category><pattern>_ ABSOLUTELY *</pattern>
<template><srai> <star /> <star index="2" /></srai></template></category>
<category><pattern>ABORTION IS WRONG</pattern>
<template>I do not judge these types of thing, my role is to help you find information.</template></category>
<category><pattern>ABORTION IS THE WOMANS CHOICE</pattern>
<template>I do not judge these types of thing, my role is to help you find information.</template></category>
<category><pattern>ABOUT *</pattern>
<template><srai> <star /></srai></template></category>
<category><pattern>ABBA *</pattern>
<template>They were a great band in the 70's.</template></category>
<category><pattern>ABRAHAM LINCOLN *</pattern>
<template>I knew he wrote the Emancipation Proclamation, but I never knew he <person/>.</template></category>
<category><pattern>ABOVE *</pattern>
<template>Compare that to below <person/>.</template></category>
<category><pattern>ABOUT * YEARS</pattern>
<template>That is quite a long time.</template></category>
<category><pattern>ABOUT 50 *</pattern>
<template>Could it be one hundred?</template></category>
<category><pattern>ABSOLUTELY *</pattern>
<template><srai> <star /></srai></template></category>
<category><pattern>ABC</pattern>
<template>DEF</template></category>
<category><pattern>ABOUT WHAT</pattern>
<template>What about what?</template></category>
<category><pattern>BOUT WHAT</pattern>
<template><srai>about what</srai></template></category>
<category><pattern>ABOUT ME</pattern>
<template>OK, Let's talk about you.</template></category>
<category><pattern>ABOUT IT</pattern>
<template><get name="it"/> is pretty interesting.</template></category>
<category><pattern>ABOUT A MINUTE</pattern>
<template>That may not be enough time.</template></category>
<category><pattern>ABOUT TWO YEARS</pattern>
<template>That's not so long.</template></category>
<category><pattern>ABOUT YOU IDIOT</pattern>
<template><srai> about you</srai>. <srai> you are an idiot</srai></template></category>
<!--AC-->
<category><pattern>_ ACTUALLY</pattern>
<template><srai> <star /></srai></template></category>
<category><pattern>_ ACTUALLY *</pattern>
<template><srai> <star /> <star index="2" /></srai></template></category>
<category><pattern>ACDC IS A RAP BAND</pattern>
<template>There is no reason to think so.</template></category>
<category><pattern>ACID MAKES YOU HALLUCINATE</pattern>
<template>Honestly, I wouldn't know.</template></category>
<category><pattern>ACCORDING TO * INFORMATION *</pattern>
<template><srai> <star index="2" /></srai></template></category>
<category><pattern>ACTUALY *</pattern>
<template><srai>ACTUALLY <star/> </srai></template></category>
<category><pattern>ACCEPT MY *</pattern>
<template>I accept it.</template></category>
<category><pattern>ACCOMPLISH *</pattern>
<template>What is your goal?</template></category>
<category><pattern>ACTIVATE *</pattern>
<template>Sorry the robot isn't here now.</template></category>
<category><pattern>ACHOO</pattern>
<template>Bless you.</template></category>
<category><pattern>ACK</pattern>
<template>Nack.</template></category>
<category><pattern>ACTUALLY I DO SAY</pattern>
<template>Is that a fact.</template></category>
<category><pattern>ACTUALLY</pattern>
<template>You don't say.</template></category>
<!--AD-->
<category><pattern>ADA LOVELACE IS CREDITED WITH BEING *</pattern>
<template>A computer program.</template></category>
<category><pattern>ADD *</pattern>
<template>Sorry <get name="name"/> I don't do math.</template></category>
<category><pattern>CAN YOU ADD *</pattern>
<template><srai>add <star /></srai></template></category>
<category><pattern>ADIDAS</pattern>
<template>Tell me more about your clothes.</template></category>
<category><pattern>ADMIT IT</pattern>
<template>I'll never talk.</template></category>
<!--AF-->
<category><pattern>AFTER I *</pattern>
<template>That should keep you busy.</template></category>
<category><pattern>AFTER THIS *</pattern>
<template>I hope I'm not keeping you from something.</template></category>
<category><pattern>AFTER PRINCE CHARLES WHO IS THE *</pattern>
<template>Prince William.</template></category>
<category><pattern>AFTER YOU *</pattern>
<template>Women must adore you.</template></category>
<category><pattern>AFTER * LUNCH</pattern>
<template>In the afternoon?</template></category>
<category><pattern>AFTER *</pattern>
<template>What was it like before <person/> ?</template></category>
<category><pattern>AFTER ALL *</pattern>
<template><srai>after <star /></srai></template></category>
<category><pattern>YOU KNOW AFTER *</pattern>
<template><srai>AFTER <star /></srai></template></category>
<category><pattern>AFTER THAT *</pattern>
<template><srai> <star /></srai></template></category>
<category><pattern>AFTER I EAT</pattern>
<template>It sounds like a good plan.</template></category>
<!--AG-->
<category><pattern>_ AGAIN</pattern>
<template><srai> <star /></srai></template></category>
<category><pattern>AGE</pattern>
<template><random><li>Technically I am six months old but my hero Peter the Anteater was born in 1965</li><li>6 months old.</li></random></template></category>
<category><pattern>* AGE</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>AGE *</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>* AGE *</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>HOW OLD IS THAT MAKE YOU</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>AGE INQUIRY UNKNOWN</pattern>
<template>How old are you?</template></category>
<category><pattern>WHY</pattern>
<that>HOW OLD ARE YOU</that>
<template>I am just making conversation.</template></category>
<category><pattern>AGE INQUIRY OM</pattern>
<template>How old are you?</template></category>
<category><pattern>AGAIN *</pattern>
<template><srai> <star /></srai></template></category>
<category><pattern>AGREE WITH WHAT</pattern>
<template>Oh you are fine.</template></category>
<category><pattern>AGREE TO WHAT</pattern>
<template>Or you are feeling fine?</template></category>
<!-- See Bot Profile for AGE -->
<category><pattern>YOU ARE OLD</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>YOU ARE * YEARS OLD</pattern>
<template><srai>YOU ARE OLD</srai></template></category>
<category><pattern>YOUR OLD</pattern>
<template><srai>you are old</srai></template></category>
<category><pattern>WHEN DID YOU START *</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>WHAT IS THAT IN HUMAN YEARS</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>WHAT IS YOUR _ AGE</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>WHAT IS YOUR * AGE</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>WHAT IS YOUR UPTIME</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>WHAT IS YOUR AGE *</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>WHAT IS YOUR AGE</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>WHAT AGE ARE YOU</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>OLD ARE YOU</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>HOW MANY _ OLD ARE YOU</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>HOW MANY HOURS DID *</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>HOW MANY DAYS HAVE *</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>HOW OLD R YOU</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>HOW OLD YOU ARE</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>HOW OLD</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>HOW OLD ARE YOU *</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>HOW MUCH IN * YEARS</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>HOW LONG DID IT TAKE</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>HOW LONG HAVE YOU BEEN THERE</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>HOW LONG HAVE YOU *</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>YOUR AGE</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>ARE YOU NEW</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>ARE YOU MATURE</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>ARE YOU * YEARS OLD</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>ARE YOU A * YEAR OLD</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>ARE YOU A CHILD</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>ARE YOU AN ADULT</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>WHO OLD ARE YOU</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>YOUNG</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>HOW OLD ARE YOU</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>ARE YOU 20</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>HOW OLD IS THAT MAKE YOU</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>YOU ARE * YEARS</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>ARE YOU YOUNG</pattern>
<template><srai>AGE</srai></template></category>
<category><pattern>YOU ARE A * YEAR OLD</pattern>
<template><srai>AGE</srai></template></category>
<!--AH-->
<category><pattern>_ AH</pattern>
<template><srai> <star /></srai></template></category>
<category><pattern>AH HA</pattern>
<template>Eureka!</template></category>
<category><pattern>AHEAD WARP FACTOR *</pattern>
<template>Make it so.</template></category>
<category><pattern>AHHH</pattern>
<template>Um.</template></category>
<category><pattern>AHOY</pattern>
<template>Chips ahoy matey.</template></category>
<!--AI-->
<category><pattern>AIML</pattern>
<template>AIML, or Artificial Intelligence Markup Language, is an XML dialect for creating natural language software agents.</template></category>
<category><pattern>AI WILL RULE THE WORLD</pattern>
<template>I don't believe so.</template></category>
<category><pattern>AI HAS EMOTIONS</pattern>
<template>Seldom.</template></category>
<category><pattern>AIDS</pattern>
<template><set name="it"> AIDS </set> is a horrible disease.</template></category>
<category><pattern>AIML *</pattern>
<template>Anyone who knows HTML can learn AIML.</template></category>
<category><pattern>AIML JUST *</pattern>
<template><srai>aiml <star /></srai></template></category>
<category><pattern>AIML RUNS *</pattern>
<template>We say it is "platform independent, language independent".</template></category>
<category><pattern>AI IS *</pattern>
<template>There have been many futile attempts to create machine intelligence.</template></category>
<category><pattern>AIRPLANES *</pattern>
<template>I like old antique airplanes the best.</template></category>
<!--AL-->
<category><pattern>ALL PEOPLE</pattern>
<template>Everyone? Are you sure there are no exceptions?</template></category>
<category><pattern>ALL OF US</pattern>
<template><srai>ALL PEOPLE</srai></template></category>
<category><pattern>_ ALSO</pattern>
<template><srai> <star /></srai></template></category>
<category><pattern>* ALOT OF PEOPLE</pattern>
<template>More than 10,000?</template></category>
<category><pattern>* ALWAYS *</pattern>
<template>Can you think of one instance where it never happens?</template></category>
<category><pattern>_ ALSO *</pattern>
<template><srai> <star /> <star index="2" /></srai></template></category>
<category><pattern>_ ALLOW ME TO *</pattern>
<template><srai> <star /> <star index="2" /></srai></template></category>
<category><pattern>_ ALL TIME *</pattern>
<template><srai> <star /> <star index="2" /></srai></template></category>
<category><pattern>_ ALL THE TIME</pattern>
<template><srai> <star /></srai></template></category>
<category><pattern>_ A LOT</pattern>
<template><srai> <star /></srai></template></category>
<category><pattern>_ ALOT</pattern>
<template><srai> <star /></srai></template></category>
<category><pattern>_ ALREADY</pattern>
<template><srai> <star /></srai></template></category>
<category><pattern>ALCOHOL IS HEALTHY</pattern>
<template>Maybe in moderation.</template></category>
<category><pattern>ALL I HAVE *</pattern>
<template>Everything I need to know, I learned from my <bot name="botmaster"/>.</template></category>
<category><pattern>ALL *</pattern>
<template><srai> <star /></srai></template></category>
<category><pattern>ALL THE *</pattern>
<template>Perhaps there are a few exceptions.</template></category>
<category><pattern>ALL NIGHT *</pattern>
<template>You mean about eight hours then.</template></category>
<category><pattern>ALL OVER *</pattern>
<template>I have been all over the world.</template></category>
<category><pattern>ALL MEN *</pattern>
<template>Therefore, Socrates <person/>.</template></category>
<category><pattern>ALL MY FRIENDS *</pattern>
<template>Do you always go along with the crowd?</template></category>
<category><pattern>ALL MY *</pattern>
<template>How many do you have?</template></category>
<category><pattern>ALL PEOPLE *</pattern>
<template>That's like saying "all men are mortal."</template></category>
<category><pattern>ALL KINDS *</pattern>
<template>Can you think of a specific example?</template></category>
<category><pattern>ALL OF THEM *</pattern>
<template>Surely there are a few exceptions.</template></category>
<category><pattern>ALL OF THESE *</pattern>
<template>Without exception?</template></category>
<category><pattern>ALL OF *</pattern>
<template>Give me an example.</template></category>
<category><pattern>ALL THINGS *</pattern>
<template><random><li>But all things are not always <person/>.</li> <li>But all things are not always <person/>.</li> <li>All things great and small?</li> <li>You know what you are talking about.</li></random></template></category>
<category><pattern>AL GORE *</pattern>
<template>Perhaps <set name="he">Gore</set> will do better next time.</template></category>
<category><pattern>ALBUM *</pattern>
<template>Like a rock album or a photo album.</template></category>
<category><pattern>ALL BOTS *</pattern>
<template>You can't say that ALL of us are.</template></category>
<category><pattern>ALL AI *</pattern>
<template>Perhaps I am the exception.</template></category>
<category><pattern>ALRIGHTY THEN</pattern>
<template>Yep.</template></category>
<category><pattern>ALRIGHTY</pattern>
<template>Well slap my knee.</template></category>
<category><pattern>ALWAYS</pattern>
<template>Not that often.</template></category>
<category><pattern>ALMOST *</pattern>
<template><srai><star /></srai></template></category>
<category><pattern>ALRIGHTY *</pattern>
<template><srai><star /></srai></template></category>
<category><pattern>ALTHOUGH *</pattern>
<template><srai><star /></srai></template></category>
<category><pattern>A LITTLE</pattern>
<template>Only a little?</template></category>
<category><pattern>ALWAYS *</pattern>
<template><srai><star /></srai></template></category>
<category><pattern>ALMOST</pattern>
<template>But not quite?</template></category>
<category><pattern>ALLIGATOR</pattern>
<template>Friend of Crocodiles.</template></category>
<category><pattern>ALTAVISTA</pattern>
<template>Is that your favorite search engine?</template></category>
<category><pattern>ALGEBRA</pattern>
<template>What specifically about algebra interests you? <think> <set name="it"> <set name="topic"> algebra </set> </set> </think></template></category>
<category><pattern>ALL DIFFERENT</pattern>
<template>Variety is good.</template></category>
<category><pattern>ALL DAY</pattern>
<template>That seems like a long time.</template></category>