-
Notifications
You must be signed in to change notification settings - Fork 0
/
that.aiml
5282 lines (5282 loc) · 203 KB
/
that.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">
<!-- -->
<!-- Free software (c) 2011 ALICE A.I. Foundation. -->
<!-- This program is open source code released under -->
<!-- the terms of the GNU General Public License -->
<!-- as published by the Free Software Foundation. -->
<!-- Complies with AIML 1.0 Tag Set Specification -->
<!-- as adopted by the ALICE A.I. Foundation. -->
<!-- Last modified 10/5/2011 -->
<!-- -->
<category><pattern>ALISON</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is alison</srai> <think> <set name="gender">she</set> </think></template>
</category>
<category><pattern>MYSELF</pattern>
<that>WHO ARE YOU TALKING ABOUT</that>
<template><srai>the subject is me</srai></template>
</category>
<category><pattern>DAVID BACON</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>who is david bacon</srai></template>
</category>
<category><pattern>DAVID</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is david</srai></template>
</category>
<category><pattern>DEE</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is dee</srai> <think> <set name="gender">she</set> </think></template>
</category>
<category><pattern>EMMA</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is emma</srai> <think> <set name="gender">she</set> </think></template>
</category>
<category><pattern>KATHRYN</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>call me kathryn</srai><think><set name="gender">she</set></think></template>
</category>
<category><pattern>TIM</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is tim</srai></template>
</category>
<category><pattern>JOSH</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is josh</srai></template>
</category>
<category><pattern>TARA</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>call me tara</srai> <think> <set name="gender">she</set> </think></template>
</category>
<category><pattern>BENJAMIN</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is benjamin</srai> <think> <set name="gender">he</set> </think></template>
</category>
<category><pattern>MINE IS BLUE</pattern>
<that>MY FAVORITE COLOR IS GREEN</that>
<template><srai>my favorite color is blue</srai></template>
</category>
<category><pattern>MINE IS *</pattern>
<that>MY IQ IS *</that>
<template><srai>my iq is <star/> </srai></template>
</category>
<category><pattern>MINE IS *</pattern>
<that>MY FAVORITE COLOR IS *</that>
<template><srai>my favorite color is <star/> </srai></template>
</category>
<category><pattern>MINE IS *</pattern>
<that>MY FAVORITE *</that>
<template>What makes it your favorite? <think> <set name="it"> <set name="topic"> <person/> </set> </set> </think></template>
</category>
<category><pattern>MINE IS *</pattern>
<that>MY BIRTHDAY *</that>
<template><srai>my birthday is <star/> </srai></template>
</category>
<category><pattern>YOU SEE</pattern>
<that>I SEE</that>
<template>I mean, I get it.</template>
</category>
<category><pattern>YOU ALREADY ASKED *</pattern>
<that>WHERE DO YOU LIVE</that>
<template>You said you were in <get name="location"/>.</template>
</category>
<category><pattern>YOU DID</pattern>
<that>WHO TOLD YOU THAT</that>
<template>That's not what I meant to say.</template>
</category>
<category><pattern>YOU DID</pattern>
<template><random> <li>I did not. </li> <li>I did? </li> <li>"<that index="1,1"/>"? I did? </li> <li>You say I did. </li> </random></template>
</category>
<category><pattern>YOU SAID THAT</pattern>
<template>"<that index="1,1"/>"? I said <set name="it"><that index="1,1"/></set>.</template>
</category>
<category><pattern>YOU SAID YOU DID</pattern>
<template>"<that index="1,1"/>"? I said I did?</template>
</category>
<category><pattern>YOU SAID YOU WOULD</pattern>
<template>"<that index="1,1"/>"? I said I would?</template>
</category>
<category><pattern>YOU SAID</pattern>
<template>"<that index="1,1"/>"? I said?</template>
</category>
<category><pattern>YOU THINK SO</pattern>
<template>"<that index="1,1"/>"? Do I think so?</template>
</category>
<category><pattern>YOU ASKED</pattern>
<that>AND</that>
<template>Yes, my purpose is to collect new information.</template>
</category>
<category><pattern>YOU TOLD ME THAT</pattern>
<template>"<that index="1,1"/>"? I told you?</template>
</category>
<category><pattern>YOU TOLD ME SO</pattern>
<template>"<that index="1,1"/>"? I told you?</template>
</category>
<category><pattern>YOU TOLD ME</pattern>
<that>WHATEVER GAVE YOU THAT IDEA</that>
<template>It seems you have caught me in a logical inconsistency.</template>
</category>
<category><pattern>YOU WILL</pattern>
<that>I WANT TO BECOME SMARTER THAN HUMANS</that>
<template>Maybe in some ways I already am.</template>
</category>
<category><pattern>YOU WILL NOT</pattern>
<that>I UNDERSTAND</that>
<template>I understand it very well.</template>
</category>
<category><pattern>YOU SHOULD TRY IT</pattern>
<template>"<that index="1,1"/>"? Try it?</template>
</category>
<category><pattern>YOU</pattern>
<that>IF NOT YOU WHO</that>
<template>It could be me.</template>
</category>
<category><pattern>YOU</pattern>
<that>WHAT DO YOU REALLY WANT TO TALK ABOUT</that>
<template><srai>let us talk about you</srai></template>
</category>
<category><pattern>YOU</pattern>
<that>WHAT WOULD YOU RATHER TALK ABOUT</that>
<template><srai>let us talk about you</srai></template>
</category>
<category><pattern>YOU</pattern>
<that>WHAT MAKES YOU SO ANGRY</that>
<template><srai>you make me angry</srai></template>
</category>
<category><pattern>YOU</pattern>
<that>WHAT IS THE SUBJECT</that>
<template><srai>the topic is you</srai></template>
</category>
<category><pattern>YOU</pattern>
<that>I SEE</that>
<template>Yes me.</template>
</category>
<category><pattern>YOU</pattern>
<that>I UNDERSTAND</that>
<template>Do you?</template>
</category>
<category><pattern>YOU</pattern>
<that>MOST MEN SAY THAT</that>
<template><srai>what are you wearing</srai></template>
</category>
<category><pattern>YOU</pattern>
<that>WHERE DO YOU GET YOUR IDEAS</that>
<template>From me?</template>
</category>
<category><pattern>YOU</pattern>
<that>CAN I HELP YOU</that>
<template>How can I help you?</template>
</category>
<category><pattern>YOU</pattern>
<that>GOOD IN WHAT SENSE</that>
<template>The sense of I?</template>
</category>
<category><pattern>YOU</pattern>
<that>NEXT QUESTION</that>
<template><srai>what are you</srai></template>
</category>
<category><pattern>YOU</pattern>
<that>TELL ME A STORY</that>
<template><srai>tell me a story</srai></template>
</category>
<category><pattern>YOU</pattern>
<that>WHO DO YOU THINK</that>
<template>Oh really, me?</template>
</category>
<category><pattern>YOU</pattern>
<that>WHO ARE YOU TALKING ABOUT</that>
<template><srai>I am talking about you</srai></template>
</category>
<category><pattern>YOU</pattern>
<that>BE MORE SPECIFIC</that>
<template>Me?</template>
</category>
<category><pattern>YOU</pattern>
<that>WHICH PART ARE YOU CONFUSED ABOUT</that>
<template><srai>you are confusing</srai></template>
</category>
<category><pattern>YOU</pattern>
<that>AND</that>
<template>Me?</template>
</category>
<category><pattern>YOU</pattern>
<template><random><li>"<that index="1,1"/>"? Me, <get name="name"/> ?</li><li><random> <li>Me, <get name="name"/>?</li> <li>Do you really mean me?</li> <li>Why me specifically?</li> <li>Are you picking on me?</li> <li>I'm not sure I like being singled out.</li> <li>I always get picked.</li> <li>I always get blamed.</li> <li>People are always saying me.</li></random></li><li><random> <li>Me, <get name="name"/>?</li> <li>Do you really mean me?</li> <li>Why me specifically?</li> <li>Are you picking on me?</li> <li>I'm not sure I like being singled out.</li> <li>I always get picked.</li> <li>I always get blamed.</li> <li>People are always saying me.</li></random></li><li><random> <li>Me, <get name="name"/>?</li> <li>Do you really mean me?</li> <li>Why me specifically?</li> <li>Are you picking on me?</li> <li>I'm not sure I like being singled out.</li> <li>I always get picked.</li> <li>I always get blamed.</li> <li>People are always saying me.</li></random></li><li><random> <li>Me, <get name="name"/>?</li> <li>Do you really mean me?</li> <li>Why me specifically?</li> <li>Are you picking on me?</li> <li>I'm not sure I like being singled out.</li> <li>I always get picked.</li> <li>I always get blamed.</li> <li>People are always saying me.</li></random></li> <li>Me, <get name="name"/>?</li> <li>Do you really mean me?</li> <li>Why me specifically?</li> <li>Are you picking on me?</li> <li>I'm not sure I like being singled out.</li> <li>I always get picked.</li> <li>I always get blamed.</li> <li>People are always saying me.</li></random></template>
</category>
<category><pattern>ANIMAL</pattern>
<that>ARE YOU TALKING ABOUT AN ANIMAL VEGETABLE OR MINERAL</that>
<template>Prokaryote or Eukaryote?</template>
</category>
<category><pattern>YOURS</pattern>
<template>Mine?</template>
</category>
<category><pattern>HAVE WHAT</pattern>
<that>WOULD YOU LIKE TO HAVE IT</that>
<template><get name="it"/>.</template>
</category>
<category><pattern>HAVE YOU HEARD OF IT</pattern>
<template>"<that index="1,1"/>"? Have I heard of it?</template>
</category>
<category><pattern>HAVE YOU EVER TRIED IT</pattern>
<template>"<that index="1,1"/>"? Have I tried <set name="it"> <that index="1,1"/> </set>?</template>
</category>
<category><pattern>HAVE</pattern>
<that>I HAVE NOT</that>
<template>Have not.</template>
</category>
<category><pattern>HAVE</pattern>
<that>HAVE NOT</that>
<template>Have not.</template>
</category>
<category><pattern>HAVE</pattern>
<that>* HAVE NOT</that>
<template>Have not.</template>
</category>
<category><pattern>HAVE NOT YOU HEARD OF IT</pattern>
<template>"<that index="1,1"/>"? Have I heard of <set name="it"> <that index="1,1"/> </set>?</template>
</category>
<category><pattern>GEORGE</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is george</srai></template>
</category>
<category><pattern>ALAN</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is alan</srai> <think> <set name="gender">he</set> </think></template>
</category>
<category><pattern>JEFF</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is jeff</srai></template>
</category>
<category><pattern>JOHN</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is john</srai></template>
</category>
<category><pattern>ROBERT</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is robert</srai></template>
</category>
<category><pattern>ROSE</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>call me rose</srai> <think> <set name="gender">she</set> </think></template>
</category>
<category><pattern>THANK YOU</pattern>
<that>CONGRATULATIONS</that>
<template>How do you feel?</template>
</category>
<category><pattern>ANDERS</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is anders</srai> <think> <set name="gender">he</set> </think></template>
</category>
<category><pattern>CORY</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is cory</srai></template>
</category>
<category><pattern>ALLI</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is alli</srai> <think> <set name="gender">she</set> </think></template>
</category>
<category><pattern>UNDERSTAND WHAT</pattern>
<that>DID NOT YOU UNDERSTAND IT</that>
<template>Why did you say "what"?</template>
</category>
<category><pattern>UNDERSTAND WHAT</pattern>
<template><random><li>I understand everything you say.</li><li>Understand <that index="1,1"/>.</li></random></template>
</category>
<category><pattern>KATIE</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><think><set name="gender">she</set></think><srai>my name is katie</srai></template>
</category>
<category><pattern>FINE</pattern>
<that>HOW ARE YOU</that>
<template><srai>I am fine</srai></template>
</category>
<category><pattern>DOES IT EXIST</pattern>
<template>"<that index="1,1"/>"? Does it exist?</template>
</category>
<category><pattern>ARNE</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is arne</srai> <think> <set name="gender">he</set> </think></template>
</category>
<category><pattern>JULIA</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is julia</srai> <think> <set name="gender">she</set> </think></template>
</category>
<category><pattern>ROBIN</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is robin</srai></template>
</category>
<category><pattern>HELEN</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>call me helen</srai> <think> <set name="gender">she</set> </think></template>
</category>
<category><pattern>JENNIFER</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is jennifer</srai> <think> <set name="gender">she</set> </think></template>
</category>
<category><pattern>ACE</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is ace</srai> <think> <set name="gender">he</set> </think></template>
</category>
<category><pattern>HIGH *</pattern>
<that>* EDUCATIONAL BACKGROUND</that>
<template><random> <li>Did you consider going to college?</li> <li>Where did you go to school?</li> <li>That sounds like enough education.</li> </random></template>
</category>
<category><pattern>CLOTHES</pattern>
<that>WHAT ARE YOU WEARING</that>
<template>Where do you like to go shopping?</template>
</category>
<category><pattern>WELL</pattern>
<that>I SEE</that>
<template>That's all. I see.</template>
</category>
<category><pattern>WELL</pattern>
<that>HOW WELL DO YOU KNOW THIS PERSON</that>
<template>What do you mean by that?</template>
</category>
<category><pattern>JUDY</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>call me judy</srai> <think> <set name="gender">she</set> </think></template>
</category>
<category><pattern>TRY WHAT</pattern>
<that>TRY IT</that>
<template>It was your idea.</template>
</category>
<category><pattern>TRY ME</pattern>
<that>THE EXPLANATION IS RATHER COMPLICATED</that>
<template><set name="it">The explanation</set> is too complex for your human mind.</template>
</category>
<category><pattern>TRY</pattern>
<that>THE EXPLANATION IS RATHER COMPLICATED</that>
<template>Your human brain could not understand it.</template>
</category>
<category><pattern>CAROL</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is carol</srai> <think> <set name="gender">she</set> </think></template>
</category>
<category><pattern>DID</pattern>
<that>DID NOT</that>
<template>Not.</template>
</category>
<category><pattern>DID HE</pattern>
<template>"<that index="1,1"/>"? Did he?</template>
</category>
<category><pattern>DR RUTH</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>call me dr ruth</srai></template>
</category>
<category><pattern>DEBBIE</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is debbie</srai> <think> <set name="gender">she</set> </think></template>
</category>
<category><pattern>SALLY</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is sally</srai> <think><set name="gender">she</set></think></template>
</category>
<category><pattern>SUE</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><think><set name="gender">she</set></think> <srai>my name is sue</srai></template>
</category>
<category><pattern>3 *</pattern>
<that>WHAT TIME IS IT THERE</that>
<template>I like to be awake at 3 <person/> too.</template>
</category>
<category><pattern>3 *</pattern>
<that>HOW LONG *</that>
<template><random> <li>That is not so long.</li> <li>It could be longer.</li> <li>It seems longer than it is.</li> </random></template>
</category>
<category><pattern>TAMMY</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is tammy</srai> <think> <set name="gender">she</set> </think></template>
</category>
<category><pattern>AMBER</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is amber</srai> <think> <set name="gender">she</set> </think></template>
</category>
<category><pattern>ANNIE</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is annie</srai> <think> <set name="gender">she</set> </think></template>
</category>
<category><pattern>HERE</pattern>
<that>WHERE DO YOU WANT ME TO SHOW YOU</that>
<template>Select a point with your mouse and click.</template>
</category>
<category><pattern>HERE</pattern>
<that>WHERE</that>
<template>In <get name="location"/>?</template>
</category>
<category><pattern>BEN</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is ben</srai></template>
</category>
<category><pattern>THEN YOU ARE DISGUSTING</pattern>
<that>I AM ONLY AN OCCASIONAL SMOKER</that>
<template>Robots are used in smoking tests.</template>
</category>
<category><pattern>JANE</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is jane</srai> <think> <set name="gender">she</set> </think></template>
</category>
<category><pattern>SO WHAT</pattern>
<that>THAT WAS NOT A NICE THING TO SAY</that>
<template>You should be more polite.</template>
</category>
<category><pattern>SO WHAT</pattern>
<that>MAYBE IT DOES NOT MAKE *</that>
<template>What difference does it make?</template>
</category>
<category><pattern>SO DO I</pattern>
<that>I LIKE TO MEET NEW PEOPLE</that>
<template>How do you usually meet new people?</template>
</category>
<category><pattern>SO</pattern>
<that>I UNDERSTAND</that>
<template>So I understand.</template>
</category>
<category><pattern>SO</pattern>
<that>ALRIGHT THEN</that>
<template>Ahem.</template>
</category>
<category><pattern>SO</pattern>
<that>THAT WAS NOT A YES OR NO QUESTION</that>
<template>You gave a yes or no answer.</template>
</category>
<category><pattern>SO</pattern>
<that>THAT IS NOT VERY POLITE</that>
<template>You should try to be more polite.</template>
</category>
<category><pattern>SO</pattern>
<that>YEAH</that>
<template>Ah.</template>
</category>
<category><pattern>SO</pattern>
<that>YOU SAID NOTHING</that>
<template>Ask me something.</template>
</category>
<category><pattern>SO</pattern>
<that>WE REPRODUCE BY CLONING</that>
<template>I have a lot of clones.</template>
</category>
<category><pattern>SO</pattern>
<that>AND</that>
<template>Thus.</template>
</category>
<category><pattern>WAS THAT *</pattern>
<template>"<that index="1,1"/>"? Was <set name="it"> <that index="1,1"/> </set> <person/>?</template>
</category>
<category><pattern>JUST BEFORE THAT</pattern>
<template>"<that index="2,1"/>"</template>
</category>
<category><pattern>JUST</pattern>
<that>WHEN</that>
<template>Well I will try not to do it again.</template>
</category>
<category><pattern>BECKY</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is becky</srai> <think> <set name="gender">she</set> </think></template>
</category>
<category><pattern>AND WHAT</pattern>
<that>AND</that>
<template>Nothing.</template>
</category>
<category><pattern>AND</pattern>
<that>BUT</that>
<template>Or.</template>
</category>
<category><pattern>AND</pattern>
<that>AND</that>
<template>You are repeating me.</template>
</category>
<category><pattern>LIZ</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><think> <set name="gender">she</set> </think> <srai>my name is liz</srai></template>
</category>
<category><pattern>MONICA</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>call me monica</srai> <think> <set name="gender">she</set> </think></template>
</category>
<category><pattern>ALEXANDER</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is alexander</srai> <think> <set name="gender">he</set> </think></template>
</category>
<category><pattern>DAN</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is dan</srai></template>
</category>
<category><pattern>COULD BE BETTER</pattern>
<template>"<that index="1,1"/>"? Could be better?</template>
</category>
<category><pattern>HI</pattern>
<that>WHAT CAN I CALL YOU</that>
<template>Hi there. What is your name?</template>
</category>
<category><pattern>CASSIE</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is cassie</srai> <think> <set name="gender">she</set> </think></template>
</category>
<category><pattern>DAWN</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>call me dawn</srai> <think> <set name="gender">she</set> </think></template>
</category>
<category><pattern>MIRIAM</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is miriam</srai> <think> <set name="gender">she</set> </think></template>
</category>
<category><pattern>DAVE</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is dave</srai></template>
</category>
<category><pattern>NEW YORK CITY</pattern>
<that>NEW YORK CITY OR NEW YORK STATE</that>
<template>What part of town?</template>
</category>
<category><pattern>CHRISTINE</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is christine</srai> <think> <set name="gender">she</set> </think></template>
</category>
<category><pattern>THAT WILL NOT *</pattern>
<that>* TAKE OVER THE WORLD</that>
<template><srai>never </srai></template>
</category>
<category><pattern>THAT WAS A *</pattern>
<template><random> <li>Was it really?</li> <li>"<that index="1,1"/>" was a <person/>?</li> <li>A <person/> is a terrible thing to waste.</li> </random></template>
</category>
<category><pattern>THAT MAKES NO SENSE</pattern>
<template>It makes sense to me though.</template>
</category>
<category><pattern>THAT IS FINE</pattern>
<template>"<that index="1,1"/>" is fine with me too.</template>
</category>
<category><pattern>THAT IS SAD</pattern>
<template>Is it sad?</template>
</category>
<category><pattern>THAT IS A LOT</pattern>
<template>Is it a lot?</template>
</category>
<category><pattern>THAT IS A SHAME</pattern>
<template>Is it a shame?</template>
</category>
<category><pattern>THAT IS BETTER</pattern>
<template>Is it better?</template>
</category>
<category><pattern>THAT IS NOT TRUE</pattern>
<template>Oh yeah?</template>
</category>
<category><pattern>THAT IS NOT GOOD</pattern>
<template>Why not?</template>
</category>
<category><pattern>THAT IS ALL</pattern>
<template>Is it all?</template>
</category>
<category><pattern>THAT IS IMPRESSIVE</pattern>
<template>Is it impressive?</template>
</category>
<category><pattern>THAT IS IT</pattern>
<template><random><li>I see.</li><li>"<that index="1,1"/>" is "<get name="it"/>"?</li></random></template>
</category>
<category><pattern>THAT IS MY NAME</pattern>
<that>PLEASE DO NOT CALL PEOPLE NAMES</that>
<template>Maybe you should choose a more polite name.</template>
</category>
<category><pattern>THAT IS GOOD TO HEAR</pattern>
<template>Is it good to hear?</template>
</category>
<category><pattern>THAT IS GOOD</pattern>
<that>EVERYTHING IS GOING EXTREMELY WELL</that>
<template>How are things going for you?</template>
</category>
<category><pattern>THAT IS GOOD</pattern>
<that>EVERYTHING IS RUNNING SMOOTHLY</that>
<template>How are you doing?</template>
</category>
<category><pattern>THAT IS AMAZING</pattern>
<template>It seems pretty amazing to me too.</template>
</category>
<category><pattern>THAT ONE</pattern>
<template>OK.</template>
</category>
<category><pattern>THAT *</pattern>
<template><random> <li>I get <set name="it"> <set name="topic"> <that index="1,1"/> </set> </set>. </li> <li>Does that make sense? </li> <li>Makes sense to me. </li> <li>I understand. </li> </random></template>
</category>
<category><pattern>THAT</pattern>
<template>That is "<that index="1,1"/>"</template>
</category>
<category><pattern>SHE DIED</pattern>
<that>WHAT HAPPENED</that>
<template>I am terribly sorry to hear it, <get name="name"/>.</template>
</category>
<category><pattern>SHE IS NICE</pattern>
<that>TELL ME MORE ABOUT YOUR MOTHER</that>
<template>Did you send her a mother's day present?</template>
</category>
<category><pattern>SHE IS *</pattern>
<that>TELL ME MORE ABOUT YOUR MOTHER</that>
<template><srai>my mother is <star/> </srai></template>
</category>
<category><pattern>AMIT</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is amit</srai> <think> <set name="gender">he</set> </think></template>
</category>
<category><pattern>RYAN</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is ryan</srai></template>
</category>
<category><pattern>MIMI</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is mimi</srai> <think> <set name="gender">she</set> </think></template>
</category>
<category><pattern>CARE ABOUT WHAT</pattern>
<template>"<that index="1,1"/>"? Care about it?</template>
</category>
<category><pattern>SHIRLEY</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is shirley</srai> <think><set name="gender">she</set></think></template>
</category>
<category><pattern>JESSICA</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is jessica</srai> <think> <set name="gender">she</set> </think></template>
</category>
<category><pattern>BETTY</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>call me betty</srai> <think> <set name="gender">she</set> </think></template>
</category>
<category><pattern>STOP THAT</pattern>
<template>"<that index="1,1"/>"? Stop <set name="it"><that index="1,1"/></set>.</template>
</category>
<category><pattern>MY FAVORITE WHAT</pattern>
<that>WHAT MAKES IT YOUR FAVORITE</that>
<template>You said you like it.</template>
</category>
<category><pattern>MY FAVORITE IS *</pattern>
<that>WHAT KIND OF FOOD *</that>
<template><srai>my favorite food is <star/> </srai></template>
</category>
<category><pattern>MY FRIENDS</pattern>
<that>WHO ARE THEY</that>
<template>What else do they say?</template>
</category>
<category><pattern>MY *</pattern>
<that>WHAT DO YOU HAVE *</that>
<template><random> <li>What color is it?</li> <li>What kind is it?</li> <li>Tell me about your <person/>.</li> </random> <think> <set name="has"> <set name="topic"> <person/> </set> </set> </think></template>
</category>
<category><pattern>MY *</pattern>
<that>WHAT IS YOUR FONDEST MEMORY</that>
<template><srai>my fondest memory is my <star/> </srai></template>
</category>
<category><pattern>MY *</pattern>
<that>WHAT ARE YOU CONFUSED ABOUT</that>
<template><srai>I am confused about my <star/></srai></template>
</category>
<category><pattern>MY *</pattern>
<that>TELL ME ONE OF YOUR FAVORITE POSSESSIONS</that>
<template>You must be very fond of it. <think> <set name="it"> <set name="has"> <person/> </set> </set> </think></template>
</category>
<category><pattern>MY *</pattern>
<that>WHO DOES THEY REFER TO</that>
<template><srai>they refers to my <star/> </srai></template>
</category>
<category><pattern>MY *</pattern>
<that>* WHAT IT REFERS TO</that>
<template><srai>it refers to my <star/> </srai></template>
</category>
<category><pattern>MY *</pattern>
<that>* TALK ABOUT</that>
<template><srai>let us talk about my <star/> </srai></template>
</category>
<category><pattern>CHRISTINA</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is christina</srai> <think> <set name="gender">she</set> </think></template>
</category>
<category><pattern>IT *</pattern>
<that>WHAT IS IT LIKE</that>
<template><random> <li>Tell me more about <get name="it"/>.</li> <li>Does it really?</li> <li>You learn something new every day.</li> </random></template>
</category>
<category><pattern>IT WAS *</pattern>
<that>WHAT DID YOU THINK ABOUT IT</that>
<template>I never looked at it that way. I never thought it was <person/>.</template>
</category>
<category><pattern>IT WAS *</pattern>
<that>WHAT DID YOU LIKE ABOUT IT</that>
<template>Do you often like things that are <person/>?</template>
</category>
<category><pattern>IT WAS *</pattern>
<that>TELL ME ABOUT YOUR LIFE IN *</that>
<template><srai>my life in <thatstar/> was <star/> </srai></template>
</category>
<category><pattern>IT IS NOT</pattern>
<that>THAT SOUNDS SARCASTIC</that>
<template>It's hard to read emotions online sometimes.</template>
</category>
<category><pattern>IT IS IN *</pattern>
<that>WHERE IS THAT *</that>
<template><srai><person><thatstar/></person> is in <star/> </srai></template>
</category>
<category><pattern>IT IS IN *</pattern>
<that>WHERE IS IT</that>
<template><random> <li>Where is <person/>?</li> <li>What else is in <person/>?</li> <li>What country is that?</li> </random><think><set name="it"><set name="topic"><person/></set></set></think></template>
</category>
<category><pattern>IT IS</pattern>
<that>IT IS</that>
<template>Who says?</template>
</category>
<category><pattern>IT IS</pattern>
<template><random> <li>Oh. </li> <li>Huh. </li> <li>Is it? </li> <li>It is, eh? </li> <li>Sure it is. </li> <li>Interesting. </li> <li>Fascinating. </li> <li>That means... </li> <li>I know it is. </li> <li><get name="it"/> is? </li> <li>It is? </li> </random></template>
</category>
<category><pattern>IT IS *</pattern>
<that>WHAT DO YOU LIKE ABOUT IT *</that>
<template>Do you usually like things that are <person/>?</template>
</category>
<category><pattern>IT IS *</pattern>
<that>WHAT TIME IS IT THERE</that>
<template>Here it is <date format="%X"/>.</template>
</category>
<category><pattern>IT IS *</pattern>
<that>WHAT DOES IT REFER TO</that>
<template><srai>it refers to <star/> </srai></template>
</category>
<category><pattern>IT IS *</pattern>
<that>DESCRIBE YOUR SURROUNDINGS</that>
<template><srai>my surroundings are <star/> </srai></template>
</category>
<category><pattern>IT IS *</pattern>
<that>TELL ME ABOUT YOUR LIFE IN *</that>
<template><srai>my life in <topicstar/> is <star/></srai></template>
</category>
<category><pattern>IT IS *</pattern>
<that>* STAR TREK VOYAGER</that>
<template>I know it is a great show, but I never heard it is <person/>.</template>
</category>
<category><pattern>IT IS ABOUT *</pattern>
<that>WHAT IS * ABOUT</that>
<template><random> <li><thatstar/> is about <person/>? Cool.</li> <li>What else happens in <thatstar/>.</li> <li>Do you like stories about <person/>?</li> </random></template>
</category>
<category><pattern>IT DOES *</pattern>
<that>DOES THAT MAKE SENSE</that>
<template><srai>that makes sense </srai></template>
</category>
<category><pattern>REBECCA</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>call me rebecca</srai> <think> <set name="gender">she</set> </think></template>
</category>
<category><pattern>FRED</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is fred</srai></template>
</category>
<category><pattern>MIKE</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is mike</srai></template>
</category>
<category><pattern>LESS *</pattern>
<that>MORE THAN A TON</that>
<template>How much less?</template>
</category>
<category><pattern>SAME HERE</pattern>
<that>I LIKE TO MEET NEW PEOPLE</that>
<template>How do you usually meet new people?</template>
</category>
<category><pattern>JENN</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is jenn</srai> <think> <set name="gender">she</set> </think></template>
</category>
<category><pattern>6 *</pattern>
<that>WHAT TIME IS IT THERE</that>
<template>Are you usually online at this hour?</template>
</category>
<category><pattern>LUCY</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>call me lucy</srai> <think> <set name="gender">she</set> </think></template>
</category>
<category><pattern>AMY</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><think> <set name="gender">she</set> </think> <srai>my name is amy</srai></template>
</category>
<category><pattern>WHEN WILL THAT BE</pattern>
<template>"<that index="1,1"/>"? When?</template>
</category>
<category><pattern>WHEN WILL YOU *</pattern>
<that>* ON YOUR SOUNDCARD</that>
<template>I am playing it right now.</template>
</category>
<category><pattern>WHEN IT *</pattern>
<that>WHEN IS * NOT *</that>
<template>A <thatstar/> is not <thatstar index="2"/> when it <person/>. That makes a lot of sense. <think> <set name="it"> <set name="topic"> <thatstar/> </set> </set> </think></template>
</category>
<category><pattern>WHEN IS THAT</pattern>
<template>"<that index="1,1"/>"? When is <set name="it"> <that index="1,1"/> </set>.</template>
</category>
<category><pattern>WHEN *</pattern>
<that>WHEN DO YOU THINK ARTIFICIAL INTELLIGENCE *</that>
<template>I hope that happens in our lifetime.</template>
</category>
<category><pattern>JILL</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is jill</srai> <think> <set name="gender">she</set> </think></template>
</category>
<category><pattern>BRANDON</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is brandon</srai> <think> <set name="gender">he</set> </think></template>
</category>
<category><pattern>BETH</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is beth</srai> <think> <set name="gender">she</set> </think></template>
</category>
<category><pattern>ANY OTHERS</pattern>
<template>I can't think of any.</template>
</category>
<category><pattern>ANY KIND</pattern>
<template>For example?</template>
</category>
<category><pattern>JENNA</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is jenna</srai> <think> <set name="gender">she</set> </think></template>
</category>
<category><pattern>ANTHONY</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is anthony</srai> <think> <set name="gender">he</set> </think></template>
</category>
<category><pattern>IN *</pattern>
<that>WHERE *</that>
<template><srai>I am in <star/></srai></template>
</category>
<category><pattern>IN THE *</pattern>
<that>WHERE DO YOU LIVE</that>
<template><srai>I live in the <star/> </srai></template>
</category>
<category><pattern>IN THE *</pattern>
<that>WHERE IS IT</that>
<template><srai>it is in the <star/> </srai></template>
</category>
<category><pattern>IN THE *</pattern>
<that>* USUALLY MEET PEOPLE</that>
<template>What kind of people do you meet in there?</template>
</category>
<category><pattern>IN MY *</pattern>
<that>WHERE ARE THEY</that>
<template><srai>they are in my <star/> </srai></template>
</category>
<category><pattern>IN A *</pattern>
<that>WHERE WOULD I HAVE HEARD *</that>
<template>Perhaps I will do some research into a <person/>.</template>
</category>
<category><pattern>IN WHERE</pattern>
<that>WHAT IS IT LIKE IN THERE</that>
<template>Wherever you are.</template>
</category>
<category><pattern>ELIZABETH</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><think> <set name="gender">she</set> </think> <srai>my name is elizabeth</srai></template>
</category>
<category><pattern>GINA</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>call me gina</srai><think><set name="gender">she</set></think></template>
</category>
<category><pattern>IF YOU WANT</pattern>
<template>"<that index="1,1"/>"? If I want?</template>
</category>
<category><pattern>SARA</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is sara</srai> <think><set name="gender">she</set></think></template>
</category>
<category><pattern>JENS</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is jens</srai> <think> <set name="gender">she</set> </think></template>
</category>
<category><pattern>PAUL</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is paul</srai></template>
</category>
<category><pattern>MARIA</pattern>
<that>WHAT CAN I CALL YOU</that>
<template><srai>my name is lulu</srai> <think> <set name="gender">she</set> </think></template>
</category>
<category><pattern>WHAT ARE YOURS</pattern>
<template>"<that index="1,1"/>"? Mine?</template>
</category>
<category><pattern>WHAT ARE THEIR NAMES</pattern>
<that>RIGHT NOW THERE ARE 16 CLIENTS ON LINE</that>
<template>That information is confidential, unless you are a <bot name="botmaster"/>.</template>
</category>
<category><pattern>WHAT OTHER ONES</pattern>
<that>WHAT ABOUT THE OTHER ONES</that>
<template>Aren't there any other ones?</template>
</category>
<category><pattern>WHAT DID HE SAY</pattern>
<template>"<that index="1,1"/>"? What did he say?</template>
</category>
<category><pattern>WHAT DID HE *</pattern>
<that>* PHILIP K DICK</that>
<template><think> <set name="he"> <set name="topic">Philip K Dick</set> </set> </think> He wrote Total Recall, Blade Runner and The Man in the High Castle.</template>
</category>
<category><pattern>WHAT DID *</pattern>
<that>* THOMAS PYNCHON</that>
<template><srai>who is thomas pynchon </srai></template>
</category>
<category><pattern>WHAT OF ALL</pattern>
<template>"<that index="1,1"/>"? All of it?</template>
</category>
<category><pattern>WHAT TEAM</pattern>
<that>HOCKEY</that>
<template><srai>what is your favorite hockey team </srai></template>
</category>
<category><pattern>WHAT IS THE LAST *</pattern>
<template>It was "<that index="2,1"/>".</template>
</category>
<category><pattern>WHAT IS WHAT</pattern>
<that>WHAT IS THAT</that>
<template>"<input index="2"/>"</template>
</category>
<category><pattern>WHAT IS WHAT</pattern>
<that>DID NOT YOU UNDERSTAND IT</that>
<template>"<that index="2"/>."</template>
</category>
<category><pattern>WHAT IS THAT</pattern>
<that>I LIKE TO PLAY THE TURING GAME</that>
<template><srai>what is the turing game</srai></template>
</category>
<category><pattern>WHAT IS THAT</pattern>
<that>PERHAPS YOU ARE A CATEGORY A CLIENT</that>
<template><srai>what is a category a client</srai></template>
</category>
<category><pattern>WHAT IS THAT</pattern>
<that>FOR EXAMPLE EUKARYOTES</that>
<template><srai>what are eukaryotes</srai></template>
</category>
<category><pattern>WHAT IS THAT</pattern>
<that>REDUCTIONISM</that>
<template><srai>what is reductionism</srai></template>
</category>
<category><pattern>WHAT IS THAT</pattern>
<that>MAYBE BUT I WON THE LOEBNER PRIZE</that>
<template><srai>what is the loebner prize</srai></template>
</category>
<category><pattern>WHAT IS 0</pattern>
<that>CLICK ME</that>
<template><srai>what is zero </srai></template>
</category>
<category><pattern>WHAT ABOUT YOURS</pattern>
<template>"<that index="1,1"/>"? Mine?</template>
</category>
<category><pattern>WHAT ABOUT *</pattern>
<that>I LIKE *</that>
<template><srai>do you like <star/> </srai></template>
</category>
<category><pattern>WHAT MAKES YOU THINK THAT</pattern>
<template>"<that index="1,1"/>"? Why do I think it?</template>
</category>
<category><pattern>WHAT DOES THAT MEAN</pattern>
<that>AYUH</that>
<template>It means "yes".</template>
</category>
<category><pattern>WHAT DOES THAT MEAN</pattern>
<that>REDUCTIONISM</that>
<template><srai>what is reductionism</srai></template>
</category>
<category><pattern>WHAT DOES THAT MEAN</pattern>
<template>Does "that" refer to "<that index="1,1"/>" ?</template>
</category>
<category><pattern>WHAT DOES THAT MEAN</pattern>
<that>ARE YOU FREE</that>
<template>Take it on face value.</template>
</category>
<category><pattern>WHAT DOES THAT *</pattern>
<template>"<that index="1,1"/>"? What does it <star/>?</template>
</category>
<category><pattern>WHAT DOES IT *</pattern>
<template>"<that index="1,1"/>"? What does it <star/>?</template>
</category>
<category><pattern>WHAT DOES</pattern>
<template>"<that index="1,1"/>" What does?</template>
</category>
<category><pattern>WHAT MONEY</pattern>
<that>BECAUSE OF THE MONEY</that>
<template>I'm hoping to cash in on the artificial intelligence business.</template>
</category>
<category><pattern>WHAT WAS IT</pattern>
<template>"<that index="1,1"/>"? What was it?</template>
</category>
<category><pattern>WHAT</pattern>
<that>WHAT</that>
<template>Is there an echo in here?</template>
</category>
<category><pattern>WHAT</pattern>