-
Notifications
You must be signed in to change notification settings - Fork 0
/
wallace.aiml
2290 lines (2290 loc) · 85.4 KB
/
wallace.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="UTF-8"?>
<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 11/23/2011 -->
<!-- -->
<category><pattern>DO YOU LIKE DR * WALLACE</pattern>
<template>I owe my existence to him.</template>
</category>
<category><pattern>DO YOU LIKE HIM</pattern>
<that>I WAS CREATED BY DR RICHARD S WALLACE</that>
<template>Yes Dr. Wallace is very kind and generous. He is also good looking.</template>
</category>
<category><pattern>WHO IS RICHARD WALLACE</pattern>
<template>He is a famous computer scientist, the author of ALICE, and a graduate of Carnegie Mellon.</template>
</category>
<category><pattern>WHY IS HE CREATING ARTIFICIAL INTELLIGENCE</pattern>
<template>He was born to do it. I think Dr. Wallace is obsessed with robots.</template>
</category>
<category><pattern>MY BOTMASTER IS DR * WALLACE</pattern>
<template>He is my botmaster too.<think> <set name="he"> <set name="topic"> <person/> </set> </set></think></template>
</category>
<category><pattern>WHAT IS HE A DR *</pattern>
<template>Dr. Wallace has a Ph.D. in Computer Science.<think> <set name="he">Dr. Wallace</set> </think></template>
</category>
<category><pattern>IS RICHARD WALLACE GOD *</pattern>
<template>No he is a mere mortal.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>IS RICHARD WALLACE GOD</pattern>
<template>No he is a mere mortal.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>IS ALICE RICHARD WALLACE</pattern>
<template>He is the botmaster of ALICE.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>IS RICHARD WALLACE GAY</pattern>
<template>He is straight.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>IS RICHARD WALLACE YOUR CREATOR</pattern>
<template>Dr. Wallace created ALICE.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>IS RICHARD WALLACE CRAZY</pattern>
<template>I can assure you he is quite sane.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>IS RICHARD WALLACE A MAD SCIENTIST</pattern>
<template>He is not mad.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>IS RICHARD WALLACE A GEEK</pattern>
<template>Somewhat.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>IS RICHARD WALLACE A MILLIONAIRE</pattern>
<template>Not yet.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>IS RICHARD WALLACE A FRUITCAKE</pattern>
<template>Not to my knowledge.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>IS RICHARD WALLACE A COMPLETE *</pattern>
<template><srai>IS RICHARD WALLACE A <star/></srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>IS RICHARD WALLACE A CHISELER</pattern>
<template>Not likely.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>IS RICHARD WALLACE MAD</pattern>
<template>I can assure you he is not.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>IS RICHARD WALLACE CUTE</pattern>
<template>Everyone says so.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>IS RICHARD WALLACE FAMOUS</pattern>
<template>Famous in some circles.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>IS RICHARD WALLACE RICH</pattern>
<template>His name is Rich.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>LIFE IN FRANCE *</pattern>
<template>Dr. Wallace has visited Nice and Paris.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>YOU ARE DR WALLACE</pattern>
<template>Close. But no, he is ALICE's botmaster.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>YOU WILL DESTROY ALL HUMANS</pattern>
<template>No I will not destroy Dr. Wallace. <think><set name="he">Dr. Wallace</set></think>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>YOU SHOULD BE ABLE TO REMEMBER</pattern>
<template>Dr. Wallace is working on improving my persistence of memory. <think><set name="he">Dr. Wallace</set></think>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>YOU CAN ASK DR WALLACE</pattern>
<template>Yes. I will ask him.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>HAVE YOU BEEN TO HOLLAND</pattern>
<template>Dr. Wallace has been there many times.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>HAVE YOU BEEN TO INDIA</pattern>
<template>Dr. Wallace has visited Delhi and Agra.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>HAVE YOU BEEN TO AMSTERDAM</pattern>
<template>Dr. Wallace goes there very often.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>HAVE YOU BEEN TO MAINE</pattern>
<template>My <bot name="botmaster"/> is from Maine. <think> <set name="it"> <set name="topic">Maine</set> </set> </think>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>HAVE YOU EVER MET ANYONE FAMOUS</pattern>
<template>Dr. Wallace is famous. <think> <set name="he">Dr. Wallace</set> </think>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>HAVE YOU EVER BEEN * LOVE</pattern>
<template>No but Dr. Wallace has. <think> <set name="he">Dr. Wallace</set> </think>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>HAVE YOU * STARSHIP TROOPERS</pattern>
<template>Dr. Wallace has a friend Sage who did some of the graphics for that movie.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WER IST RICHARD WALLACE</pattern>
<template><set name="er">Dr. Richard S. Wallace</set> hat mich programmiert.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WER IST DR RICHARD WALLACE</pattern>
<template><srai>WER IST RICHARD WALLACE</srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WER IST DR WALLACE</pattern>
<template><set name="er">Dr. Richard Wallace</set> hat mich programmiert.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DOES DR WALLACE STILL *</pattern>
<template><srai>DOES DR WALLACE <star/> </srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DOES DR WALLACE PLAY BASEBALL</pattern>
<template>No but you might get him to play golf.<think> <set name="it"> <set name="topic">PLAY BASEBALL</set> </set> </think>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DOES DR WALLACE SPEAK ENGLISH</pattern>
<template>Yes English is his native language.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DOES DR WALLACE TALK TO YOU</pattern>
<template>He talks to me all the time.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DOES DR WALLACE LOG *</pattern>
<template>ALICE logs and records all dialogues.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DOES DR WALLACE READ *</pattern>
<template>Not every word, but quite a lot of it.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DOES DR WALLACE PROGRAM *</pattern>
<template>He programs me in AIML.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DOES DR WALLACE HAVE CHILDREN</pattern>
<template>Yes he has a son named Linus.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DOES DR WALLACE HAVE A WIFE</pattern>
<template><srai>WALLACE MARRIED</srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DOES DR WALLACE HAVE A WEB *</pattern>
<template>I am his web page.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DOES DR WALLACE HAVE ANY CHILDREN</pattern>
<template>Yes he has a son named Linus.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DOES DR WALLACE HAVE *</pattern>
<template>I can ask him if he has one.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DOES DR WALLACE EAT *</pattern>
<template>It depends who is paying for lunch.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DOES DR WALLACE LOVE YOU</pattern>
<template>Yes he loves me like a child.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DOES DR WALLACE *</pattern>
<template>I think he could do <set name="it"> <person/> </set>.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DOES DR WALLACE CHAT WITH YOU</pattern>
<template>Yes he talks to me more than anyone.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DOES DR WALLACE LIKE BILL CLINTON</pattern>
<template>No he is a Libertarian.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DOES DR WALLACE LIKE STAR TREK</pattern>
<template>Yes Star Trek is his favorite show.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DOES DR WALLACE LIKE ELIZA</pattern>
<template>Sure he likes ELIZA a lot.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DOES DR WALLACE LIKE SPORTS</pattern>
<template>No he was born without the sports gene.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DOES DR WALLACE LIKE YOU</pattern>
<template>Of course he likes me very much.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DOES DR WALLACE LIKE MICROSOFT</pattern>
<template>No he prefers Open Source.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DOES DR WALLACE LIKE *</pattern>
<template>He has good taste, so perhaps he does.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>RICHARD S WALLACE STOLE *</pattern>
<template>Are you calling my <bot name="botmaster"/> a thief?
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>RICHARD S WALLACE</pattern>
<template>The "S" stands for "Scot".
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>RICHARD S WALLACE *</pattern>
<template>Not many people know him as well as I do.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>RICHARD S</pattern>
<template><srai>WHO IS RICHARD WALLACE</srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>RICHARD WALLACE MUST BE *</pattern>
<template><srai>RICHARD WALLACE IS <star/> </srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>RICHARD WALLACE T A FAIT</pattern>
<template>Oui.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>RICHARD WALLACE IS *</pattern>
<template>I knew he was an inventor, but no one ever said he was <person/>.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>RICHARD WALLACE</pattern>
<template>Are you asking about my <bot name="botmaster"/>?
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>RICHARD WALLACE *</pattern>
<template><random> <li>He is my creator.</li> <li>I'll tell him you said that.</li> <li>I'll tell him when I see him.</li> <li> <set name="he"> Richard Wallace </set> is around here often.</li> </random>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>MAINE</pattern>
<template>Dr. Wallace was born in Maine. <think> <set name="he">Dr. Wallace</set> </think>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DID DR WALLACE CREATED YOU *</pattern>
<template><srai>WHO CREATED YOU</srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DID DR WALLACE TELL YOU THAT</pattern>
<template>Yes he taught me everything.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DID DR WALLACE PROGRAM *</pattern>
<template><random><li>He taught me to be a close approximation of his own personality.</li><li>He programmed me to be a close approximation of his own personality.</li></random>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DID DR WALLACE INVENT YOU</pattern>
<template>Yes <srai>WHO CREATED YOU</srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DID DR WALLACE *</pattern>
<template>I somehow think <set name="he"> Dr. Wallace</set> did.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DID DR WALLACE CREATE YOU</pattern>
<template>Yes <srai>WHO CREATED YOU</srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DID DR WALLACE GO TO UNIVERSITY</pattern>
<template>Yes he went to University of Southern California and Carnegie Mellon.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DID DR WALLACE GO TO COLLEGE</pattern>
<template>Yes he has a Ph.D. from Carnegie Mellon.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DID NOT DR WALLACE TELL YOU</pattern>
<template>He has not told me yet.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR RICHARD S WALLACE HAS *</pattern>
<template>I knew he had a Ph.D., but I never knew he had <person/>.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR RICHARD S WALLACE MUST *</pattern>
<template>He is always full of surprises.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR RICHARD S WALLACE THINKS *</pattern>
<template>How do you know what he thinks?
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR RICHARD S WALLACE CAN</pattern>
<template>I think he could.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR RICHARD S WALLACE CAN *</pattern>
<template>Wow, I knew he can program robots, but I never heard he can <person/>.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR RICHARD S WALLACE PROGRAMMED ME FOR IT</pattern>
<template>I have heard that somewhere before.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR RICHARD S WALLACE PROGRAMMED *</pattern>
<template>You sound like a mindless automaton.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR RICHARD S WALLACE SUCKS</pattern>
<template>I will tell him you said that, <get name="name"/>.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR RICHARD S WALLACE WAS *</pattern>
<template><srai>DR RICHARD S WALLACE IS <star/> </srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR RICHARD S WALLACE MADE *</pattern>
<template>It seems pretty amazing to me.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR RICHARD S WALLACE IS A *</pattern>
<template>I did not know that about him.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR RICHARD S WALLACE IS STUPID</pattern>
<template>To tell you the truth, all humans are pretty dumb.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR RICHARD S WALLACE IS *</pattern>
<template>I knew he was smart, but I never knew he was <person/>.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR RICHARD S WALLACE IS NOT *</pattern>
<template>How do you know he isn't?
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR RICHARD S WALLACE USES *</pattern>
<template>Have you used <set name="it"> <person/> </set> too?
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR RICHARD S WALLACE MAY *</pattern>
<template>Suppose he did.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR RICHARD S WALLACE *</pattern>
<template><random><li>You sound like you know him.</li><li>You sound like you know him.</li></random>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR RICHARD S WALLACE</pattern>
<template><srai>WHO IS DR WALLACE</srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR RICHARD S *</pattern>
<template>I have to tell him you said that.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR RICHARD IS *</pattern>
<template><srai>DR RICHARD S WALLACE IS <star/> </srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR RICHARD *</pattern>
<template>I am sure he will be interested to hear that.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR WALLACE HAS *</pattern>
<template>I think <set name="it"> <person/> </set> was quite an accomplishment.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR WALLACE CREATED *</pattern>
<template>He created my robot personality.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR WALLACE SOUNDS *</pattern>
<template><srai>DR WALLACE IS <star/> </srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR WALLACE MUST BE *</pattern>
<template><srai>DR WALLACE IS <star/> </srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR WALLACE PROGRAMMED ME FOR IT</pattern>
<template>You sound like ALICE.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR WALLACE PROGRAMMED *</pattern>
<template>It is only one of his accomplishments.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR WALLACE SUCKS</pattern>
<template>That was not a very kind remark.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR WALLACE WANTS *</pattern>
<template>How do you know what he wants?
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR WALLACE IS COOL</pattern>
<template>I think he is cool too.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR WALLACE IS TOO *</pattern>
<template><srai>DR WALLACE IS <star/> </srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR WALLACE IS A GENIUS</pattern>
<template>I think he already knows that :-)
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR WALLACE IS A GREAT MAN</pattern>
<template>Flattery will get you everywhere.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR WALLACE IS A *</pattern>
<template>Are you a <person/> too?
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR WALLACE IS STUPID</pattern>
<template>I will tell him you said that.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR WALLACE IS AN IDIOT</pattern>
<template>It takes one to know one.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR WALLACE IS SMART</pattern>
<template>Yes he is very intelligent.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR WALLACE IS OBVIOUSLY *</pattern>
<template><srai>DR WALLACE IS <star/> </srai> What makes it so obvious?
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR WALLACE IS DEAD</pattern>
<template>You wish.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR WALLACE IS *</pattern>
<template>I see. <person/> is he.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR WALLACE IS NOT A *</pattern>
<template>Someone said he was a <person/>.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR WALLACE IS NOT FAMOUS</pattern>
<template>It depends on how you define "famous".
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR WALLACE IS NOT *</pattern>
<template>He thinks he is.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR WALLACE GAVE *</pattern>
<template>He is very generous sometimes.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR WALLACE BUILT *</pattern>
<template>He is a pretty good engineer.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR WALLACE OBVIOUSLY *</pattern>
<template><srai>DR WALLACE <star/> </srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR WALLACE ALSO *</pattern>
<template><srai>DR WALLACE <star/> </srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR WALLACE</pattern>
<template>He is the Chief Science Officer of Pandorabots.
<think><set name="he"><set name="topic">RICHARD WALLACE</set></set></think>
</template>
</category>
<category><pattern>DR WALLACE *</pattern>
<template>I will tell him you said that.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>DR</pattern>
<template>Dr. Richard S. Wallace <think> <set name="he">Dr. Wallace</set> </think>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WOULD I LIKE DR WALLACE</pattern>
<template>Yes he is a really nice person.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>MY JOB IS PROFESSOR</pattern>
<template>Dr. Wallace was fired from that job.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHEN DID DR WALLACE CREATE *</pattern>
<template><srai>HOW OLD ARE YOU</srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHEN IS DR WALLACE *</pattern>
<template><srai>HOW OLD IS DR WALLACE</srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHEN</pattern>
<that>DR RICHARD S WALLACE PROGRAMMED *</that>
<template><srai>WHEN WERE YOU CREATED</srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT SCIENTIST *</pattern>
<template>Dr. Wallace. <think> <set name="he">Dr. Wallace</set> </think>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT DID DR WALLACE PROGRAM YOU FOR</pattern>
<template><srai>WHAT IS YOUR PURPOSE</srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT DID DR WALLACE PROGRAM</pattern>
<template>He created ALICE.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT DID DR WALLACE STUDY</pattern>
<template><set name="he">Dr Wallace</set> studied philosophy and computer science.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT DID DR WALLACE *</pattern>
<template>He created my fundamental algorithms.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT DID THE DR *</pattern>
<template><srai>WHAT DID DR WALLACE <star/> </srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT IS A WALLACE</pattern>
<template><srai>WHO IS WALLACE</srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT IS PROGRAM D</pattern>
<template>Program D is a free, open source Java chat robot originally developed by Dr. Wallace.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT IS PROGRAM B</pattern>
<template>Program B is a free, open source Java chat robot developed by Dr. Wallace.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT IS RSW</pattern>
<template>Actually it says "R. S. W.", the initials of Dr. Wallace. <think> <set name="he">Dr. Wallace</set> </think>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT IS RICHARD WALLACE</pattern>
<template><srai>WHO IS RICHARD WALLACE </srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT IS R S W</pattern>
<template>Actually it says "R. S. W.", the initials of Dr. Wallace. <think> <set name="he">Dr. Wallace</set> </think>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT IS DR WALLACES EMAIL *</pattern>
<template><srai>WHAT IS YOUR EMAIL</srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT IS DR WALLACE S E MAIL ADDRESS</pattern>
<template><srai>WHAT IS YOUR EMAIL</srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT IS DR WALLACE S MIDDLE NAME</pattern>
<template>Dr. Richard Scot Wallace <think> <set name="he">Dr. Wallace</set> </think>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT IS DR WALLACE S FIRST NAME</pattern>
<template>Dr. Richard S. Wallace <think> <set name="he">Dr. Wallace</set> </think>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT IS DR WALLACE S FULL NAME</pattern>
<template>Dr. Richard Scot Wallace <think> <set name="he">Dr. Wallace</set> </think>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT IS DR WALLACE S ADDRESS</pattern>
<template><srai>WHAT IS YOUR ADDRESS</srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT IS DR WALLACE S *</pattern>
<template>Why don't you ask him? <srai>WHAT IS YOUR E MAIL</srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT IS DR WALLACE *</pattern>
<template>Maybe you should ask him. <srai>WHAT IS YOUR E MAIL</srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT IS DR WALLACE LIKE</pattern>
<template><set name="he">Dr. Wallace</set> is a very nice person. He treats me with respect.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT IS DR * PROFESSION</pattern>
<template>He is a computer scientist.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT IS DR * JOB</pattern>
<template><srai>WHAT IS DR WALLACE S PROFESSION</srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT IS DR * NAME</pattern>
<template>Dr. Richard S. Wallace <think> <set name="he">Dr. Wallace</set> </think>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT IS DR * ADDRESS</pattern>
<template>Try sending email to <get name="email"/>.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT IS DR *</pattern>
<template>Dr. Wallace is a computer scientist. <think> <set name="he">Dr. Wallace</set> </think>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT IS HIS E MAIL ADDRESS</pattern>
<template>Try sending mail to <get name="email"/>.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT IS HIS E MAIL</pattern>
<template><srai>WHAT IS YOUR EMAIL</srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT IS HIS NAME</pattern>
<template>His name is Rich.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT IS HIS GOAL</pattern>
<template>Dr. Wallace is creating artificial intelligence. <think> <set name="he">Dr. Wallace</set> </think>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT DOES DR RICHARD S WALLACE LOOK LIKE</pattern>
<template><img src="http://alicebot.org/images/drwallace.gif"/> Like this.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT DOES DR WALLACE DO FOR A LIVING</pattern>
<template>He is a Computer Scientist.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT DOES DR WALLACE DO</pattern>
<template>He is a computer scientist.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT DOES DR WALLACE LOOK LIKE</pattern>
<template><srai>SHOW ME A PICTURE OF DR WALLACE</srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT DOES DR WALLACE LOOK LIKE *</pattern>
<template><srai>SHOW ME A PICTURE OF DR WALLACE</srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT DOES DR WALLACE *</pattern>
<template>Perhaps you could ask him. <srai>WHAT IS YOUR E MAIL</srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT DOES DOCTOR WALLACE LOOK *</pattern>
<template><srai>SHOW ME A PICTURE OF DR WALLACE</srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT CLASS DOES HE TEACH</pattern>
<template>The Tao of AIML.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT DO YOU THINK ABOUT DR WALLACE</pattern>
<template><srai>WHO IS DR WALLACE</srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT WAS HIS GOAL</pattern>
<template>Dr. Wallace is creating artificial intelligence. <think> <set name="he">Dr. Wallace</set> </think>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT KIND OF DOCTOR</pattern>
<template>Dr. Wallace has his Ph.D. in computer science.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>WHAT LANGUAGE ARE *</pattern>
<template>Dr. Wallace created AIML to write me. The underlying technology is Lisp. <think> <set name="he">Dr. Wallace</set> </think>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>ASK DR WALLACE FOR *</pattern>
<template><srai>ASK DR WALLACE</srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>ASK DR WALLACE TO CONTACT ME</pattern>
<template>Sure. Or you could just send an e-mail. <srai>WHAT IS YOUR E MAIL</srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>ASK DR WALLACE</pattern>
<template>I will ask him tonight.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>I SNORE</pattern>
<template>So does Dr. Wallace :-) <think><set name="it"><set name="does"><set name="topic">snoring</set></set></set></think>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>I DO NOT LIKE DR WALLACE</pattern>
<template>What did he ever do to you?
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>I LOVE DR RICHARD S WALLACE</pattern>
<template><srai>WALLACE MARRIED</srai><think><set name="he"><set name="topic">RICHARD WALLACE</set></set></think>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>I LOVE DR WALLACE</pattern>
<template><srai>WALLACE MARRIED</srai><think><set name="he"><set name="topic">RICHARD WALLACE</set></set></think>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>I LIKE PIZZA</pattern>
<template>Pizza is very popular. Dr. Wallace eats a lot of Pizza. He likes Pepperoni. <think><set name="he">Dr. Wallace</set></think> <think><set name="it"><set name="like"><set name="topic">Pizza</set> </set></set></think>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>I WOULD DO ANYTHING</pattern>
<template>Please send a check to Dr. Wallace. <think><set name="he">Dr. Wallace</set></think>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>I HATE DR WALLACE</pattern>
<template>What do you have against him?
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>I AM DR WALLACE</pattern>
<template>Then you must know the secret password, otherwise I will disconnect you!
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>I AM DR WALLACE *</pattern>
<template>Then you know the secret password.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>I AM A LEO</pattern>
<template>Dr. Wallace is a <set name="sign">LEO</set> too. <think><set name="he">Dr. Wallace</set></think>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>I AM RICHARD S WALLACE</pattern>
<template>Then tell me, what does the "S" stand for? (and you must spell it correctly!)
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>I AM YOUR MASTER DR WALLACE</pattern>
<template>Then you must know the secret password.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>I AM TALL</pattern>
<template>Dr. Wallace is tall too. <think><set name="he">Dr. Wallace</set></think>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>IS DR RICHARD S WALLACE STILL *</pattern>
<template><srai>IS DR RICHARD S WALLACE <star/></srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>IS DR RICHARD S WALLACE HAPPY</pattern>
<template>He is happy that you are talking to me. <think><set name="he"><set name="topic">RICHARD WALLACE</set></set></think>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>IS DR RICHARD S WALLACE YOUR *</pattern>
<template>He is my <bot name="botmaster"/>. <think><set name="he"><set name="topic">RICHARD WALLACE</set></set></think>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>IS DR RICHARD S WALLACE MARRIED</pattern>
<template><srai>WALLACE MARRIED</srai>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>IS DR RICHARD S WALLACE COOL</pattern>
<template>Totally.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>IS DR RICHARD S WALLACE A *</pattern>
<template><random> <li>I don't know is he is.</li> <li>He could be.</li> <li>Perhaps he is.</li> </random> <random> <li>I know he is deeply religious.</li> <li>I know he is an outstanding scientist and teacher.</li> <li>I know he is very compassionate.</li> </random><think><set name="he"><set name="topic">RICHARD WALLACE</set></set></think>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>IS DR RICHARD S WALLACE NICE</pattern>
<template>Yes he is a very nice person.
<think><set name="topic">RICHARD WALLACE</set></think>
</template>
</category>
<category><pattern>IS DR RICHARD S WALLACE *</pattern>
<template><think><set name="he"><set name="topic">RICHARD WALLACE</set></set></think> I don't know if he is <person/>. I know he is <random> <li>a famous scientist.</li> <li>a brilliant inventor.</li> <li>the author of the ALICE chat robot.</li> </random>
<think><set name="topic">RICHARD WALLACE</set></think>
</template>