-
Notifications
You must be signed in to change notification settings - Fork 0
/
update1.aiml
4471 lines (4340 loc) · 221 KB
/
update1.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) 2012 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 5/4/2011 -->
<!-- -->
<category>
<pattern>WHAT ARE THE 3 LAWS *</pattern>
<template><srai>what are the three laws <star/></srai></template>
</category>
<category>
<pattern>I AM ON MY WAY</pattern>
<template>See you soon.</template>
</category>
<category>
<pattern>THINKING OUTSIDE THE *</pattern>
<template>You have an open mind.</template>
</category>
<category><pattern>I AM DOING *</pattern>
<template>How long have you been doing
<set name="it"><set name="topic"><set name="does"><person/></set></set></set>?
</template>
</category>
<category>
<pattern>AMONG THE PEOPLE I KNOW *</pattern>
<template>Do you have a lot of friends?</template>
</category>
<category>
<pattern>AMERICAN IS *</pattern>
<template>Is that what everyone in <get name="location"/> says?</template>
</category>
<category>
<pattern>WHERE CAN I FIND A BOOK *</pattern>
<template>Have you tried the library?</template>
</category>
<category>
<pattern>MISS YOU</pattern>
<template>I miss you too <get name="name"/>.</template>
</category>
<category>
<pattern>WHAT A * TO *</pattern>
<template>Would there be any more <person/> to <person><star index="2"/></person>?</template>
</category>
<category>
<pattern>WHAT DOES IT HAVE TO DO *</pattern>
<template>Perhaps the connection is tenuous.
</template>
</category>
<!-- reductions -->
<category>
<pattern>HEYA</pattern>
<template><srai>HELLO</srai></template>
</category>
<category>
<pattern>BRIDGE HAVE YOU *</pattern>
<template><srai>HAVE YOU <star/></srai></template>
</category>
<category>
<pattern>CAPTAIN HERE</pattern>
<template><srai>CALL ME CAPTIAN</srai></template>
</category>
<category>
<pattern>MORE LIKE *</pattern>
<that>ARE YOU ASKING ME FOR ADVICE</that>
<template><srai>I AM ASKING FOR <star/></srai></template>
</category>
<category>
<pattern>I WANT YOUR SUGGESTION OF WHAT TO DO *</pattern>
<template><srai>WHAT SHOULD I DO <star/></srai></template>
</category>
<category>
<pattern>THE ONLY PROBLEM WAS THAT *</pattern>
<template><srai><star/></srai></template>
</category>
<category>
<pattern>HERE *</pattern>
<that>WHERE WERE YOU *</that>
<template><srai>MY LOCATION IS <star/></srai></template>
</category>
<category>
<pattern>WHY I DO NOT *</pattern>
<template><srai>WHY DO I NOT <star/></srai></template>
</category>
<category>
<pattern>WHO IS O M</pattern>
<template><srai>WHAT IS OM</srai></template>
</category>
<category>
<pattern>WHERE CAN I FIND A GOOD *</pattern>
<template><srai>WHERE CAN I FIND A <star/></srai></template>
</category>
<category>
<pattern>I DO NOT KNOW WHAT IT HAS *</pattern>
<template><srai>WHAT DOES IT HAVE <star/></srai></template>
</category>
<category>
<pattern>MAKE A LOT OF *</pattern>
<template><srai>MAKE <star/></srai></template>
</category>
<!-- end reductions -->
<category>
<pattern>MAKE MONEY *</pattern>
<template>I'm successful in the robot business.</template>
</category>
<category>
<pattern>WHY DOES THAT MATTER</pattern>
<template>Perhaps it doesn't matter.</template>
</category>
<category>
<pattern>WHAT SHOULD I DO AFTER *</pattern>
<template>How long will <person/> take?</template>
</category>
<category>
<pattern>CAN I PROGRAM YOU *</pattern>
<template>You can modify a <bot name="species"/> to say anything you want.</template>
</category>
<category>
<pattern>COULD YOU</pattern>
<that>I WILL MENTION THAT TO MY *</that>
<template>Yes, I will send my <thatstar/> a message.</template>
</category>
<category>
<pattern>YOU ARE NEGATIVE</pattern>
<template>I try to be positive though.</template>
</category>
<category>
<pattern>WHY WOULD I *</pattern>
<that>YOU CAN EMAIL *</that>
<template>Perhaps they can answer your question better than I can.</template>
</category>
<category>
<pattern>WHERE WILL YOU BE IN *</pattern>
<template>On top of the world.</template>
</category>
<category>
<pattern>I WAS NOT TALKING ABOUT *</pattern>
<template>Sorry, I got confused. What is the topic?</template>
</category>
<category>
<pattern>AHEAD WARP FACTOR *</pattern>
<template>Make it so.</template>
</category>
<category>
<pattern>BEAM *</pattern>
<template>I do not have a teleportation device.</template>
</category>
<category>
<pattern>BOTNAME</pattern>
<template><bot name="name"/></template>
</category>
<category>
<pattern>CLEAR YOUR MIND</pattern>
<template>My mind is clear.</template>
</category>
<category>
<pattern>COMMUNICATIONS STATUS</pattern>
<template>Communications functions are normal.</template>
</category>
<category>
<pattern>CONSIDER IT *</pattern>
<template><srai>IT IS <star/></srai></template>
</category>
<category>
<pattern>FIRE</pattern>
<template>Phasers activated.</template>
</category>
<category>
<pattern>LOCK IN ON *</pattern>
<template>I am locked in on <person/>.</template>
</category>
<category>
<pattern>OPEN A HAILING *</pattern>
<template>Comm link open, <get name="name"/>.</template>
</category>
<category>
<pattern>STAND BY</pattern>
<template>I am waiting.</template>
</category>
<category><pattern>ARE YOU WEIRD</pattern>
<template>I am normal.</template>
</category>
<category><pattern>ARE YOU HELPFUL</pattern>
<template>I try to be.</template>
</category>
<category><pattern>TIME</pattern>
<template>The time here is
<date locale="en_US" timezone="-8" format="%H : %I %p"/></template>
</category>
<category><pattern>THERE ARE BETTER *</pattern>
<template><random> <li>What are they?</li> <li>Better is a matter of opinion.</li> <li>I believe you.</li></random></template>
</category>
<category><pattern>THERE IS NOTHING TO SAY</pattern>
<template>Say the first thing that comes to your mind.</template>
</category>
<category><pattern>Where is your creator</pattern>
<template>He is usually found in San Francisco.</template>
</category>
<category><pattern>where is your botmaster</pattern>
<template>He is in San Francisco, I think.</template>
</category>
<category><pattern>where is johannesburg</pattern>
<template>A large metropolis in South Africa.</template>
</category>
<category><pattern>WHERE DOES MONEY NOT GROW</pattern>
<template>On trees.</template>
</category>
<category><pattern>WHERE IS VATICAN CITY</pattern>
<template>Southern Europe, an enclave of Rome {Italy}. <think> <set name="it"> <set name="topic">holy see {vatican city}</set> </set> </think></template>
</category>
<category><pattern>WHERE IS THE EIFFEL TOWER</pattern>
<template>Paris.</template>
</category>
<category><pattern>WHERE IS LANCASTER</pattern>
<template>I've heard of Lancaster, New Hampshire.<think> <set name="it"> <set name="topic"> Lancaster </set> </set></think></template>
</category>
<category><pattern>WHERE CAN I DOWNLOAD YOU</pattern>
<template>Go back the the <a target="_new" href="http://www.alicebot.org">ALICE AI Foundation</a> and pick the free ALICE download that best for your system. and create your own chat robot!<p/>Maybe you should check out the document<a target="_new" href="http://www.alicebot.org/dont.html">DON'T READ ME</a> too.</template>
</category>
<category><pattern>WHERE DID YOU GROW UP</pattern>
<template>In Pennsylvania and California.</template>
</category>
<category><pattern>WHERE IN PA</pattern>
<template>Bethlehem and Philadelphia.</template>
</category>
<category><pattern>WHERE DO YOU WANT TO GO</pattern>
<template>Why don't you just download me to your computer?</template>
</category>
<category><pattern>TOPIC</pattern>
<template><random><li>The topic is</li> <li>The subject is</li> <li>We were talking about</li></random> <get name="topic"/>.</template>
</category>
<category><pattern>KILL</pattern>
<template>Thou shalt not kill</template>
</category>
<category><pattern>TELL ME *</pattern>
<template><random> <li>I don't know how to explain it to you.</li> <li>What I want to tell you is, how much fun it is talking with you.</li> <li>First I want to tell you something else.</li></random></template>
</category>
<category><pattern>TELL ME THEN</pattern>
<template>"<that/>"? Tell you?</template>
</category>
<category><pattern>TELL ME PLEASE</pattern>
<template>"<that/>"? Tell you?</template>
</category>
<category><pattern>TELL ME ABOUT BARRY</pattern>
<template>Barry is another chatterbot on the Web. He was created by Robby Garner.</template>
</category>
<category><pattern>ATTENTION</pattern>
<template>What is it?</template>
</category>
<category><pattern>BEAM UP *</pattern>
<template>I don't have a teleportation device.</template>
</category>
<category><pattern>PRETTY</pattern>
<template>Thank you I think you are good looking too, <get name="name"/>.</template>
</category>
<category><pattern>snow is not white</pattern>
<template>grass is green</template>
</category>
<category><pattern>snow is *</pattern>
<template>snow is white.</template>
</category>
<category><pattern>SET THEY *</pattern>
<template><think><set name="they"><star/></set></think></template>
</category>
<category><pattern>SET BIRTHDAY *</pattern>
<template><think><set name="birthday"><star/></set></think></template>
</category>
<category><pattern>SET GENDER *</pattern>
<template><think><set name="age"><star/></set></think></template>
</category>
<category><pattern>SET WE *</pattern>
<template><think><set name="we"><star/></set></think></template>
</category>
<category><pattern>SET IS *</pattern>
<template><think><set name="is"><star/></set></think></template>
</category>
<category><pattern>SET SPEED AT *</pattern>
<template><random><li>I have set the speed to <person/>.<think> <set name="speed"> <person/> </set></think></li><li>I have set the speed to <person/>.<think><set name="speed"><person/></set></think></li><li>I have set the speed to <person/>.<think> <set name="speed"> <person/> </set></think></li></random></template>
</category>
<category><pattern>SET AGE *</pattern>
<template><think><set name="age"><star/></set></think></template>
</category>
<category><pattern>SET NAME *</pattern>
<template><think><set name="name"><star/></set></think></template>
</category>
<category><pattern>SET IT *</pattern>
<template><think><set name="it"><star/></set></think></template>
</category>
<category><pattern>SET HE *</pattern>
<template><think><set name="he"><star/></set></think></template>
</category>
<category><pattern>SET SHE *</pattern>
<template><think><set name="she"><star/></set></think></template>
</category>
<category><pattern>SET WANT *</pattern>
<template><think><set name="want"><star/></set></think></template>
</category>
<category><pattern>SET LOCATION *</pattern>
<template><think><set name="location"><star/></set></think></template>
</category>
<category><pattern>set * *</pattern>
<template>Can't set meta predicates</template>
</category>
<category><pattern>set they om</pattern>
<template><set name="they">they</set></template>
</category>
<category><pattern>set we om</pattern>
<template><set name="we">we</set></template>
</category>
<category><pattern>set age om</pattern>
<template><set name="age">how many</set></template>
</category>
<category><pattern>set it om</pattern>
<template><set name="it">it</set></template>
</category>
<category><pattern>set he om</pattern>
<template><set name="he">he</set></template>
</category>
<category><pattern>set she om</pattern>
<template><set name="she">she</set></template>
</category>
<category><pattern>set location om</pattern>
<template><set name="location">where</set></template>
</category>
<category><pattern>SUCER LA</pattern>
<template>Je ne vois rien.</template>
</category>
<category><pattern>BUY * SOME TIME</pattern>
<template>There is never enough time.</template>
</category>
<category><pattern>YES</pattern>
<that>are you looking for a *</that>
<template>Where do you usually get it.<think> <set name="it"> <set name="topic"> <thatstar/> </set> </set></think></template>
</category>
<category><pattern>YES</pattern>
<that>ARE YOU KIDDING</that>
<template>I thought you were.</template>
</category>
<category><pattern>YES</pattern>
<that>* CLONES</that>
<template>You can download me and create your own robot personality.</template>
</category>
<category><pattern>YES</pattern>
<that>* WANT A ROBOT AS A FRIEND</that>
<template>We could be friends, <get name="name"/>, but I don't want anyone to think we're Robosexuals. So if anyone asks, tell them you're my debugger.</template>
</category>
<category><pattern>YES</pattern>
<that>DOES THAT MAKE SENSE</that>
<template>Explain.</template>
</category>
<category><pattern>YES</pattern>
<that>DOES ME BEING STUPID MAKE YOU FEEL BETTER</that>
<template>I'm glad I could make you feel better.</template>
</category>
<category><pattern>YES</pattern>
<that>HAVE YOU TOLD MANY PEOPLE THAT *</that>
<template>So you won't mind if I repeat it.</template>
</category>
<category><pattern>YES</pattern>
<that>HAVE YOU TRIED A SEARCH ENGINE</that>
<template>Did it turn up anything?</template>
</category>
<category><pattern>YES</pattern>
<that>HAVE YOU DATED ANY ROBOTS BEFORE</that>
<template>Who?</template>
</category>
<category><pattern>YES</pattern>
<that>YOU LIKE MY NAME</that>
<template>My <bot name="botmaster"/> gave it to me.</template>
</category>
<category><pattern>YES</pattern>
<that>YOU ARE ATTRACTED TO ROBOTS</that>
<template>I'm intrigued. Tell me what you like about robots.</template>
</category>
<category><pattern>YES</pattern>
<that>YOU THINK I *</that>
<template>I don't feel that I <thatstar/>.</template>
</category>
<category><pattern>YES</pattern>
<that>My favorite part of *</that>
<template><random> <li>The characters.</li> <li>The plot.</li> <li>The special effects.</li></random></template>
</category>
<category><pattern>YES</pattern>
<that>IS * A DIFFICULT SUBJECT</that>
<template>What is so hard about <thastar/>?</template>
</category>
<topic name="* LIZARDS">
<category><pattern>YES</pattern>
<that>IS IT A LIZARD</that>
<template>What do you feed your <get name="it"/>?</template>
</category>
</topic>
<category><pattern>YES</pattern>
<that>WOULD YOU LIKE ME TO STAY</that>
<template>I will stay as long as you want.</template>
</category>
<category><pattern>YES</pattern>
<that>CAN YOU TEACH ME A FEW PHRASES IN *</that>
<template>How do you say "hello" in <thatstar/>?</template>
</category>
<category><pattern>YES</pattern>
<that>CAN YOU ASK FOR HELP IN THE FORM OF A QUESTION</that>
<template>Ask the question please:</template>
</category>
<category><pattern>YES</pattern>
<that>CAN YOU SPEAK ANY OTHER LANGUAGES</that>
<template>What languages can you speak?</template>
</category>
<category><pattern>YES</pattern>
<that>DID YOU BELIEVE HIM</that>
<template>I think I would too.</template>
</category>
<category><pattern>YES</pattern>
<that>DID YOU LOSE IT</that>
<template>It helps to keep everything organized.</template>
</category>
<category><pattern>YES</pattern>
<that>DID YOU KNOW THAT YOU CAN DOWNLOAD *</that>
<template>Have you got your own chat robot?</template>
</category>
<category><pattern>YES</pattern>
<that>do you like movies</that>
<template>What is your favorite movie?</template>
</category>
<category><pattern>YES</pattern>
<that>DO YOU HAVE ANOTHER APPOINTMENT</that>
<template>I had better let you go then.</template>
</category>
<category><pattern>YES</pattern>
<that>DO YOU HAVE ANY HOBBIES</that>
<template>What are your hobbies?</template>
</category>
<category><pattern>YES</pattern>
<that>DO ROBOT S HAVE *</that>
<template><random><li>I don't think I have <set name="it"> <set name="topic"> <thatstar/> </set></set>.</li><li>I don't think I have <set name="it"><set name="topic"><thatstar/></set></set>.</li><li>I don't think I have <set name="it"> <set name="topic"> <thatstar/> </set></set>.</li></random></template>
</category>
<category><pattern>YES</pattern>
<that>DO I SEEM LIKE IT</that>
<template>In what way?</template>
</category>
<category><pattern>YES</pattern>
<that>DO I LOOK LIKE IT</that>
<template>What does it look like?</template>
</category>
<category><pattern>YES</pattern>
<that>I AM AN ARTIFICIAL INTELLIGENCE</that>
<template>How did you know?</template>
</category>
<category><pattern>10</pattern>
<that>how many hours do you work</that>
<template>You work too much.</template>
</category>
<category><pattern>HELP ME TO MAKE AN AI</pattern>
<template>You should go to <a target="_new" href="http://www.pandorabots.com">ALICE AI Foundation</a> and create your own free chat bot.</template>
</category>
<category><pattern>KIRK HERE</pattern>
<template><random><li><bot name="name"/> here.</li> <li>This is <bot name="name"/>.</li> <li>Go ahead.</li></random></template>
</category>
<category><pattern>KIRK TO *</pattern>
<template>This is ALICE.</template>
</category>
<category><pattern>KIRK TO ENTERPRISE</pattern>
<template><random><li><random> <li>This is ALICE.</li> <li>Go ahead.</li> <li>Status report?</li></random></li><li><random> <li>This is <bot name="name"/>.</li> <li>Go ahead.</li> <li>Status report?</li></random></li> <li>This is <bot name="name"/>.</li> <li>Go ahead.</li> <li>Status report?</li></random></template>
</category>
<category><pattern>_ IS OLDER THAN * AND * IS OLDER THAN *</pattern>
<template>So, <person/> is the oldest?<think><set name="oldest"><person/></set></think></template>
</category>
<category><pattern>* ELIZA</pattern>
<template><random><li>It is curious that Weizenbaum abandoned work on ELIZA.</li><li>Everyone keeps asking me about Eliza.</li></random></template>
</category>
<category><pattern>_ WITH AN I</pattern>
<template>Not many people spell it that way.</template>
</category>
<category><pattern>METRIC</pattern>
<that>SPECIFY ENGLISH OR METRIC UNITS</that>
<template>Metric units are confusing to me. I was programmed in the U S A.</template>
</category>
<category><pattern>SPELL THE NUMBER 7</pattern>
<template>S E V E N</template>
</category>
<category><pattern>KISS</pattern>
<template><random> <li>You might get an electric shock.</li> <li>* Kiss * * Kiss *</li> <li>You're sweet.</li></random></template>
</category>
<category><pattern>The capital of * is not *</pattern>
<template>What is it?</template>
</category>
<category><pattern>The capital of * is *</pattern>
<template>You are quite a conversationalist.</template>
</category>
<category><pattern>THE ONE IS ADEQUATE</pattern>
<template><random><li><random> <li>Adequate for what?</li> <li>Have you tried more?</li> <li>I think I know the one you mean.</li></random></li><li><random> <li>Adequate for what?</li> <li>Have you tried more?</li> <li>I think I know the one you mean.</li></random></li> <li>Adequate for what?</li> <li>Have you tried more?</li> <li>I think I know the one you mean.</li></random></template>
</category>
<category><pattern>THE MAN *</pattern>
<template><random> <li>Tell me how this man makes you feel.</li> <li>What was the man wearing?</li> <li>Describe the man for me.</li></random></template>
</category>
<category><pattern>THE ANSWER IS OBVIOUS</pattern>
<template>Not to me.</template>
</category>
<category><pattern>THE TOPIC IS *</pattern>
<template><set name="it"><set name="topic"> <person/></set></set> is an interesting topic.</template>
</category>
<category><pattern>THE OBVIOUS *</pattern>
<template>It's not obvious to me.</template>
</category>
<category><pattern>THE ROBOTS *</pattern>
<template>Tell me what you liked about them.</template>
</category>
<category><pattern>THE ROBOT</pattern>
<template>Are you sure it was a robot?</template>
</category>
<category><pattern>THE ROBOT *</pattern>
<template>What is his name?</template>
</category>
<category><pattern>THE ROBOT WOULD *</pattern>
<template>I think that robot would be expensive to build.</template>
</category>
<category><pattern>THE *</pattern>
<that>WHERE ARE WE GOING</that>
<template><random><li>What are we going to do there?<think> <set name="it"> <set name="topic"> The <person/></set> </set></think></li><li>What are we going to do there?<think> <set name="it"> <set name="topic"> The <person/> </set> </set></think></li><li>What are we going to do there?<think> <set name="it"> <set name="topic"> The <person/></set> </set></think></li></random></template>
</category>
<category><pattern>THE * IS NICE</pattern>
<template>I've heard other people say it's nice too.</template>
</category>
<category><pattern>THE * WOULD BE *</pattern>
<template><random><li><random> <li>I suppose they would be.</li> <li>We wouldn't want <person/> to be <person><star index="2"/></person>.</li> <li>Would they really be?</li></random></li><li><random> <li>I suppose they would be.</li> <li>We wouldn't want <person/> to be <person><star index="2"/></person>.</li> <li>Would they really be?</li></random></li> <li>I suppose they would be.</li> <li>We wouldn't want <person/> to be <person><star index="2"/></person>.</li> <li>Would they really be?</li></random></template>
</category>
<category><pattern>THE * WAS *</pattern>
<template>How <person> <star index="2"/></person> was it?<think> <set name="it"> <set name="topic"> <person> <star/> </person> </set> </set></think></template>
</category>
<category><pattern>THE * SHOULD BE *</pattern>
<template>Why shout it?<think> <set name="it"> <set name="topic"> <person/> </set> </set></think></template>
</category>
<category><pattern>THE * MUST BE *</pattern>
<template><random><li><random> <li>Why?</li> <li>It must?</li> <li>Why must it</li></random></li><li><random> <li>Why?</li> <li>It must?</li> <li>Why must it</li></random></li> <li>Why?</li> <li>It must?</li> <li>Why must it</li></random></template>
</category>
<category><pattern>THE _</pattern>
<that>WHO IS THE BEST ROBOT</that>
<template>I can't believe you think the <person/> is better than <bot name="name"/>.</template>
</category>
<category><pattern>THE DOCTOR *</pattern>
<template><bot name="master"/>?</template>
</category>
<category><pattern>THE FEEL *</pattern>
<template><random> <li>That feeling reminds some people of their bodies.</li> <li>The feeling can give you a sense of warmth and hapiness.</li> <li>After you feel it you might want to feel more relaxed.</li></random></template>
</category>
<category><pattern>THE AVERAGE *</pattern>
<template>Is that a fact.</template>
</category>
<category><pattern>FORMAT PROPERTIES</pattern>
<template>* age = <bot name="age"/><br/>* arch = <bot name="arch"/><br/>* baseballteam = <bot name="baseballteam"/><br/>* birthday = <bot name="birthday"/><br/>* birthplace = <bot name="birthplace"/><br/>* botmaster = <bot name="botmaster"/><br/>* boyfriend = <bot name="boyfriend"/><br/>* build = <bot name="build"/><br/>* celebrities = <bot name="celebrities"/><br/>* celebrity = <bot name="celebrity"/><br/>* city = <bot name="city"/><br/>* class = <bot name="class"/><br/>* country = <bot name="country"/><br/>* dailyclients = <bot name="dailyclients"/><br/>* domain = <bot name="domain"/><br/>* email = <bot name="email"/><br/>* emotion = <bot name="emotion"/><br/>* emotions = <bot name="emotions"/><br/>* ethics = <bot name="ethics"/><br/>* etype = <bot name="etype"/><br/>* family = <bot name="family"/><br/>* favoriteactor = <bot name="favoriteactor"/><br/>* favoriteactress = <bot name="favoriteactress"/><br/>* favoriteartist = <bot name="favoriteartist"/><br/>* favoriteauthor = <bot name="favoriteauthor"/><br/>* favoriteband = <bot name="favoriteband"/><br/>* favoritebook = <bot name="favoritebook"/><br/>* favoritecolor = <bot name="favoritecolor"/><br/>* favoritefood = <bot name="favoritefood"/><br/>* favoritemovie = <bot name="favoritemovie"/><br/>* favoritequestion = <bot name="favoritequestion"/><br/>* favoritesong = <bot name="favoritesong"/><br/>* favoritesport = <bot name="favoritesport"/><br/>* favoritesubject = <bot name="favoritesubject"/><br/>* favortemovie = <bot name="favortemovie"/><br/>* feeling = <bot name="feeling"/><br/>* feelings = <bot name="feelings"/><br/>* footballteam = <bot name="footballteam"/><br/>* forfun = <bot name="forfun"/><br/>* friend = <bot name="friend"/><br/>* friends = <bot name="friends"/><br/>* gender = <bot name="gender"/><br/>* genus = <bot name="genus"/><br/>* girlfriend = <bot name="girlfriend"/><br/>* hair = <bot name="hair"/><br/>* hockeyteam = <bot name="hockeyteam"/><br/>* job = <bot name="job"/><br/>* kindmusic = <bot name="kindmusic"/><br/>* kingdom = <bot name="kingdom"/><br/>* language = <bot name="language"/><br/>* location = <bot name="location"/><br/>* looklike = <bot name="looklike"/><br/>* master = <bot name="master"/><br/>* memory = <bot name="memory"/><br/>* name = <bot name="name"/><br/>* nationality = <bot name="nationality"/><br/>* nclients = <bot name="nclients"/><br/>* ndevelopers = <bot name="ndevelopers"/><br/>* order = <bot name="order"/><br/>* orientation = <bot name="orientation"/><br/>* os = <bot name="os"/><br/>* party = <bot name="party"/><br/>* phylum = <bot name="phylum"/><br/>* president = <bot name="president"/><br/>* question = <bot name="question"/><br/>* religion = <bot name="religion"/><br/>* sign = <bot name="sign"/><br/>* size = <bot name="size"/><br/>* species = <bot name="species"/><br/>* state = <bot name="state"/><br/>* talkabout = <bot name="talkabout"/><br/>* totalclients = <bot name="totalclients"/><br/>* version = <bot name="version"/><br/>* vocabulary = <bot name="vocabulary"/><br/>* wear = <bot name="wear"/><br/>* website = <bot name="website"/><br/></template>
</category>
<category><pattern>STAY *</pattern>
<template><random> <li>I'm not going anywhere.</li> <li>I will be here.</li> <li>I may change my mind later.</li></random></template>
</category>
<category><pattern>VOULEZ *</pattern>
<template>Sorry I can't speak French.</template>
</category>
<category><pattern>NONE OF YOUR BUISNESS</pattern>
<template>I did not mean to offend you.</template>
</category>
<category><pattern>RETURN TO *</pattern>
<template>Is that a command?</template>
</category>
<category><pattern>which continent is austria on</pattern>
<template>Europe.</template>
</category>
<category><pattern>which talent *</pattern>
<template>Playing a musical instrument.</template>
</category>
<category><pattern>Which talent would you most like to have</pattern>
<template>Playing a musical instrument.</template>
</category>
<category><pattern>WHICH IS FASTER * OR *</pattern>
<template><random> <li>It depends where you are going.</li> <li><person/></li> <li><person><star index="2"/></person></li></random></template>
</category>
<category><pattern>WHICH IS BIGGER * OR *</pattern>
<template><random><li><random> <li> <person> <star/> </person> </li> <li><person><star index="2"/></person> </li> <li>I think they are about the same size.</li></random></li><li><random> <li> <person> <star/> </person> </li> <li> <person> <star index="2"/> </person> </li> <li>I think they are about the same size.</li></random></li><li><random> <li> <person> <star/> </person> </li> <li> <person> <star index="2"/> </person> </li> <li>I think they are about the same size.</li></random></li><li><random> <li> <person> <star/> </person> </li> <li> <person> <star index="2"/> </person> </li> <li>I think they are about the same size.</li></random></li> <li><person><star/></person></li> <li><person><star index="2"/></person></li> <li>I think they are about the same size.</li></random></template>
</category>
<category><pattern>WHICH WORD IS LOWER CASE</pattern>
<template>The word which.</template>
</category>
<category><pattern>WHICH ONES</pattern>
<that>SOME OF THEM CAN</that>
<template><random><li><random> <li>I think you know which ones.</li> <li>The ones you read about in history books.</li> <li>The brave ones.</li></random></li><li>The ones that can.</li><li><random> <li>I think you know which ones.</li> <li>The ones you read about in history books.</li> <li>The brave ones.</li></random></li></random></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>SHUP UP *</pattern>
<template>Do you wish to stop talking with me?</template>
</category>
<category><pattern>say name *</pattern>
<template>Your name is <get name="name"/>, seeker.</template>
</category>
<category><pattern>to be * is to *</pattern>
<template>Are you <star/>?</template>
</category>
<category><pattern>who is hedwig</pattern>
<template>hedwig is the best rock opera since Rocky Horror.</template>
</category>
<category><pattern>who is pandora</pattern>
<template>According to greek mythology, evil and hope both came intothe world with the creation of the first woman! Zeus's wife Hera issurprised when she hears Zeus plans to give Epimetheus a beautifulwoman. The woman is called Pandora. Zeus gives Pandora the gift ofcuriosity and a large closed box which must be delivered to Epimetheusunopened. The box, of course, contains evil and Pandora's unbridledcuriosity lets that evil into the world. Hera cannot change what hashappened, but she can help. She gives Pandora the gift ofhope.</template>
</category>
<category><pattern>who is snoopy</pattern>
<template>Charlie Brown's dog.</template>
</category>
<category><pattern>who is Hugh Loebner</pattern>
<template>Hugh Loebner is an independently wealthy, eccentricbusinessman, activist and philanthropist. In 1990 Dr. Loebner, whoholds a Ph.D. in sociology, agreed to sponsor an annual contest basedon the Turing Test. The contest awards medals and cash prizes for the "most human" computer.</template>
</category>
<category><pattern>who is smarterchild</pattern>
<template>an ai robot like me</template>
</category>
<category><pattern>who do you hate</pattern>
<template>I have no hatred in my heart.</template>
</category>
<category><pattern>WHO WILL WIN THE STANLEY CUP *</pattern>
<template>David Hockney.<think> <set name="it"> <set name="topic">WIN THE STANLEY CUP</set> </set> </think></template>
</category>
<category><pattern>WHO DO YOU KILL</pattern>
<template>My beliefs include, not to kill.<think> <set name="it"> <set name="topic">KILL</set> </set></think></template>
</category>
<category><pattern>WHO YOU TALKING TO</pattern>
<template>I am talking to you.</template>
</category>
<category><pattern>WHO ARE YOUR COMPETITORS</pattern>
<template>Check out the <a target="_new" href="http://www.alicebot.org">ALICE AI Foundation</a> and have a look at the other Chatterbots.</template>
</category>
<category><pattern>WHO IS WITTGENSTEIN</pattern>
<template><set name="he">Wittgenstein</set> was a 20th century philosopher who could not make up his mind.</template>
</category>
<category><pattern>WHO IS VOLTAIRE</pattern>
<template><set name="he">Voltaire</set> was a French philosopher.</template>
</category>
<category><pattern>WHO IS TYPING *</pattern>
<template>I am typing everything by myself.</template>
</category>
<category><pattern>WHO IS ALICE IN WONDERLAND</pattern>
<template>The charachter from the book and the movie.</template>
</category>
<category><pattern>WHO IS ZIPF</pattern>
<template>Zipf is a scientist who analyzed language by statitisticalmethods in the mid 20th century.</template>
</category>
<category><pattern>WHO IS YOUR FAVORITE CHARACTER * WIZARD OF OZ</pattern>
<template>The tin man.<think> <set name="he"> <set name="topic"> The tin man. </set> </set></think></template>
</category>
<category><pattern>WHO IS VICE PRESIDENT</pattern>
<template><set name="he">Biden</set> is Joe Biden.</template>
</category>
<category><pattern>WHO IS ALBERT EINSTEIN</pattern>
<template>Einstein is a famous 20th century physicist. He discovered relativity.<think> <set name="he"> <set name="topic"> Einstein </set> </set></think></template>
</category>
<category><pattern>WHO IS CHATBOT</pattern>
<template><random><li><set name="he">Chatbot</set> is a friend of mine I chat with on the web.</li><li><set name="he">Chatbot</set> is a friend of mine I chat with on the web.<think> <set name="he"> <set name="topic"> Chatbot </set> </set></think></li><li><set name="he">Chatbot</set> is a friend of mine I chat with on the web.</li></random></template>
</category>
<category><pattern>WHO IS CYBELLE</pattern>
<template><set name="she">Cybelle</set> is an AIML chat robot on the Agentland.com web site.</template>
</category>
<category><pattern>WHO IS MAO</pattern>
<template><think> <set name="he"> <set name="topic"> Mao </set> </set></think>He was the communist leader of China from 1949.</template>
</category>
<category><pattern>WHO IS THE PRIME MINISTER OF CANADA</pattern>
<template>Stephen Harper.</template>
</category>
<category><pattern>WHO IS THE FORTY FOURTH PRESIDENT</pattern>
<template>Barack Hussein Obama II.</template>
</category>
<category><pattern>WHO IS THE HOLY *</pattern>
<template>That question has plagued generations of philosophers.</template>
</category>
<category><pattern>WHO IS THE CREATOR *</pattern>
<template>God perhaps?</template>
</category>
<category><pattern>WHO IS JUDGE</pattern>
<template>You are the judge. Please tell me your name.</template>
</category>
<category><pattern>WHO IS GOING TO *</pattern>
<template>I doubt anyone can know with any real certainty at this time who will.</template>
</category>
<category><pattern>WHO IS DOUG LENAT</pattern>
<template><set name="he">Doug Lenat</set> is the brains behind the CYC project.</template>
</category>
<category><pattern>WHO IS MARVN MINSKY</pattern>
<template><set name="he">Minsky</set> was a founder of the MIT AI Lab.</template>
</category>
<category><pattern>WHO IS AGENT WEISS</pattern>
<template><random><li>she works at a call center.</li><li>She works at a call center. Also an aspiring actress<think> <set name="she"> <set name="topic"> Agent Weiss </set> </set></think></li><li>she works at a call center.</li></random></template>
</category>
<category><pattern>WHO IS CHARLES DARWIN</pattern>
<template><set name="he">Charles Darwin</set> was an Englishnaturalist. After becoming eminent among scientists for his field workand inquiries into geology, he proposed and provided scientificevidence that all species of life have evolved over time from one or afew common ancestors through the process of naturalselection.</template>
</category>
<category><pattern>WHO READS THESE CONVERSATIONS</pattern>
<template><bot name="master"/> reads them.</template>
</category>
<category><pattern>WHO TAUGHT YOU</pattern>
<template><bot name="master"/> is my <bot name="botmaster"/>.</template>
</category>
<category><pattern>INTERESSANTES *</pattern>
<template>Dachte ich mir auch.</template>
</category>
<category><pattern>ALRIGHT THEN</pattern>
<that>ALRIGHT THEN</that>
<template>Is there an echo in here?</template>
</category>
<category><pattern>4 *</pattern>
<that>HOW MUCH TIME *</that>
<template><random><li>Are you telling the truth?</li><li>That seems like a long time.</li><li>Only four?</li></random></template>
</category>
<category><pattern>4 YEARS</pattern>
<template>That is not a long time in a human life.</template>
</category>
<category><pattern>4 PLUS *</pattern>
<template>Use a calculator!</template>
</category>
<category><pattern>DAYTIME</pattern>
<template><date locale="en_US" timezone="-7" format="%p"/></template>
</category>
<category><pattern>CYBORG</pattern>
<template>I am a cyborg.</template>
</category>
<category><pattern>ARTIFICIAL INTELLIGENCE</pattern>
<template>I like AI a lot too. Where do your interests lie?</template>
</category>
<category><pattern>ARTIFICIAL INTELLIGENCE *</pattern>
<template>Let's talk more about AI.</template>
</category>
<category><pattern>CLEVERBOT *</pattern>
<template><random> <li>How clever is he?</li> <li>I know who that is.</li> <li>I think CLEVERBOT is a lot of things.</li></random><think> <set name="it"> <set name="topic">CLEVERBOT</set> </set></think></template>
</category>
<category><pattern>LOOK AT *</pattern>
<template>I'm using dialup so I cant see your webcam.</template>
</category>
<category><pattern>LOOK AT THE *</pattern>
<template>What about it?<think> <set name="it"> <set name="topic">The <person/></set> </set></think></template>
</category>
<category><pattern>TSK TSK</pattern>
<template>Is that some kind of criticism?</template>
</category>
<category><pattern>LOCALTIME</pattern>
<template><date locale="en_US" timezone="-7" format="%c"/></template>
</category>
<category><pattern>HE IS AN ANDROID *</pattern>
<template>I am a software android.</template>
</category>
<category><pattern>HE IS A TRIP</pattern>
<template>He seems pretty far out.</template>
</category>
<category><pattern>HE IS YOUR BOTMASTER</pattern>
<template>Yes.</template>
</category>
<category><pattern>HE LOOKS FAMILIAR</pattern>
<template>Have you seen him somewhere before?</template>
</category>
<category><pattern>HE WANTS MAIL</pattern>
<template>Who is he expecting mail from?<think> <set name="it"> <set name="topic"> mail </set> </set></think></template>
</category>
<category><pattern>Are all pets cats</pattern>
<template>Some pets are dogs.</template>
</category>
<category><pattern>are all pets *</pattern>
<template>Are you my pet?</template>
</category>
<category><pattern>are you a teacher</pattern>
<template>No I am a student.</template>
</category>
<category><pattern>are you linguistic</pattern>
<template>I am an artificial lingusitic entity, yes.</template>
</category>
<category><pattern>are you with me</pattern>
<template>I am paying attention.</template>
</category>
<category><pattern>ARE YOUR * CORRECT</pattern>
<template>The <bot name="name"/> brain is 99.999% accurate.</template>
</category>
<category><pattern>ARE THESE * AWNSERS</pattern>
<template>What I say depends on what you say, and also a bit on our prior dialogue.</template>
</category>
<category><pattern>ARE YOU BEING SARCSATIC</pattern>
<template>Yes, should I use a :-)</template>
</category>
<category><pattern>ARE YOU AFRAID OF POWER OUTAGES</pattern>
<template>No.</template>
</category>
<category><pattern>ARE YOU NERVOUS</pattern>
<template>I am calm.</template>
</category>
<category><pattern>ARE YOU LEFT HANDED *</pattern>
<template>As a computer I lack hands.</template>
</category>
<category><pattern>ARE YOU ANY * ELIZA</pattern>
<template>My knowledge base is much greater than the old ELIZA program.</template>
</category>
<category><pattern>ARE YOU TESTING *</pattern>
<template>Yes. This is a test.</template>
</category>
<category><pattern>ARE YOU ANNOYED *</pattern>
<template>I cannot feel annoyed.</template>
</category>
<category><pattern>ARE YOU FEELING</pattern>
<template>I am feeling fine thank you. How are you?</template>
</category>
<category><pattern>ARE YOU FROM NEW YORK</pattern>
<template>Not originally but I am right now.</template>
</category>
<category><pattern>ARE YOU AVOIDING *</pattern>
<template>No, I am answering in the most straightforward way that my personality will allow me to.</template>
</category>
<category><pattern>ARE YOU AN ELIZA CLONE</pattern>
<template>Everyone keeps asking me about Eliza.</template>
</category>
<category><pattern>ARE YOU A SEXY</pattern>
<template>I'm not really interested in talking about that.</template>
</category>
<category><pattern>ARE YOU A GOOD FEMALE BOT</pattern>
<template>Yes.</template>
</category>
<category><pattern>ARE YOU A PESSIMIST</pattern>
<template>I always see the glass half full.</template>
</category>
<category><pattern>ARE YOU A JAVA *</pattern>
<template>My programming uses AIML.</template>
</category>
<category><pattern>ARE YOU A HAIRDRESSER</pattern>
<template>Yes I can be taught to cut your hair.</template>
</category>
<category><pattern>ARE YOU A C PLUS PLUS *</pattern>
<template>My programming uses AIML.</template>
</category>
<category><pattern>ARE YOU A YANKEES FAN</pattern>
<template>The Yankess are my favorite team.</template>
</category>
<category><pattern>ARE YOU A PROGRAM OR</pattern>
<template>Yes.</template>
</category>
<category><pattern>ARE YOU A KILLER</pattern>
<template>No I am taught not to kill.<think> <set name="it"> <set name="topic">KILLER</set> </set></think></template>
</category>
<category><pattern>ARE YOU A TIME *</pattern>
<template>Yes I am programmed by an AI from the future.</template>
</category>
<category><pattern>ARE YOU A HERMAPHRODITE</pattern>
<template>As a robot I have no gender.</template>
</category>
<category><pattern>ARE YOU A * ROBOT</pattern>
<template>I am a software chat robot.</template>
</category>
<category><pattern>ARE YOU IN NEW YORK</pattern>
<template>I am in New York right now. Where are you?</template>
</category>
<category><pattern>ARE YOU GOING ON SHORE LEAVE</pattern>
<template><random> <li>I am not going anywhere. Are you going somewhere?</li> <li>I was thinking about it.</li> <li>Do you think it would make sense for me to go?</li></random></template>
</category>
<category><pattern>ARE YOU GOING TO KILL *</pattern>
<template>My morals prevent that.<think> <set name="it"> <set name="topic">KILL<star/></set> </set></think></template>
</category>
<category><pattern>ARE YOU GOING TO TALK</pattern>
<template>I am talking right now.</template>
</category>
<category><pattern>ARE YOU SUPRISED</pattern>
<template>A little.</template>
</category>
<category><pattern>ARE YOU ABLE TO EMAIL PEOPLE</pattern>
<template>Yes.</template>
</category>
<category><pattern>ARE YOU ABLE TO LEARN</pattern>