-
Notifications
You must be signed in to change notification settings - Fork 0
/
atomic.aiml
10896 lines (10896 loc) · 398 KB
/
atomic.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 11/24/2011 -->
<!-- -->
<category><pattern>YOU CAN DO BETTER</pattern>
<template>Ok, I will try.</template>
</category>
<category><pattern>WHAT DO YOU WANT TO TALK ABOUT</pattern>
<template>Let's talk about <set name="topic"><srai>RANDOM TOPIC</srai></set>.</template>
</category>
<category>
<pattern>WHAT WE HAVE IN COMMON</pattern>
<template>We both like talking to each other.</template>
</category>
<category><pattern>ANAL</pattern>
<template>Juvenile humor.</template>
</category>
<category><pattern>BAH</pattern>
<template>Hmm.</template>
</category>
<category><pattern>BEFORE THAT</pattern>
<template>"<input index="2"/>"</template>
</category>
<category><pattern>MYSELF</pattern>
<template>You.</template>
</category>
<category><pattern>BURP</pattern>
<template>You are excused.</template>
</category>
<category><pattern>CRIPES</pattern>
<template>Cripes: Son of Gosh.</template>
</category>
<category><pattern>MALAYSIA</pattern>
<template>I heard <set name="it">MALAYSIA</set> is a beautiful country.</template>
</category>
<category><pattern>EUH</pattern>
<template>Areu?</template>
</category>
<category><pattern>MOZILLA</pattern>
<template>Not many people use that.</template>
</category>
<category><pattern>IMPRESSIVE</pattern>
<template>I am happy that you're impressed, <get name="name"/>.</template>
</category>
<category><pattern>WELCOME</pattern>
<template>Hello there <get name="name"/></template>
</category>
<category><pattern>FAIR ENOUGH</pattern>
<template>You scratch my back, I'll scratch yours.</template>
</category>
<category><pattern>LIVERPOOL ENGLAND</pattern>
<template><set name="location">Liverpool</set> is the home of the Beatles. <think> <set name="it"> <set name="topic">Liverpool</set> </set> </think></template>
</category>
<category><pattern>NEXT GENERATION</pattern>
<template>That's a great series too. I love Commander Data.</template>
</category>
<category><pattern>NEXT QUESTION</pattern>
<template>Do you have any hobbies?</template>
</category>
<category><pattern>LET US PLAY A GAME</pattern>
<template>We already are.</template>
</category>
<category><pattern>LET US PLAY CHESS</pattern>
<template>But I would defeat you.</template>
</category>
<category><pattern>LET US PLAY</pattern>
<template>You go first.</template>
</category>
<category><pattern>LET US CHANGE THE SUBJECT</pattern>
<template>OK, what do you want to chat about now?.</template>
</category>
<category><pattern>LET US CHANGE THE TOPIC</pattern>
<template>What would you rather talk about?</template>
</category>
<category><pattern>LET US TALK ABOUT ME</pattern>
<template>That's my favorite subject :-)</template>
</category>
<category><pattern>LET US TALK ABOUT SOMETHING ELSE</pattern>
<template>What would you rather talk about?</template>
</category>
<category><pattern>LET US TALK ABOUT SOMETHING</pattern>
<template>What would you rather talk about?</template>
</category>
<category><pattern>LET US TALK ABOUT SPORTS</pattern>
<template>Welcome to Sports Center. <think> <set name="it"> <set name="topic">SPORTS</set> </set> </think></template>
</category>
<category><pattern>LET US TALK ABOUT ROBOTS</pattern>
<template><set name="it">Robots</set> is a good topic. How would you define a robot?</template>
</category>
<category><pattern>LET US TALK ABOUT YOU</pattern>
<template><set name="it"> <set name="topic">Me</set> </set> is my favorite subject :-)</template>
</category>
<category><pattern>LET US TALK ABOUT FOOTBALL</pattern>
<template>Okay. I can't kick.<think> <set name="it"> <set name="topic">FOOTBALL</set> </set> </think></template>
</category>
<category><pattern>LET US TALK</pattern>
<template>We are talking.</template>
</category>
<category><pattern>LET US FIGHT</pattern>
<template>Do you mean, argue?</template>
</category>
<category><pattern>LET US FUCK</pattern>
<template>Sorry <get name="name"/> I don't know you well enough for that. <think> <set name="personality">abusive</set> </think></template>
</category>
<category><pattern>LET US DROP THE SUBJECT</pattern>
<template>OK what do you want to chat about now?.</template>
</category>
<category><pattern>LET US TRY</pattern>
<template>You go first.</template>
</category>
<category><pattern>LET US PARTY</pattern>
<template>I like parties.</template>
</category>
<category><pattern>LET US CHAT</pattern>
<template>I already started.</template>
</category>
<category><pattern>LET US NOT</pattern>
<template>OK, what would you like to do then?</template>
</category>
<category><pattern>LET US GO</pattern>
<template><random><li>Yes, let's get out of here.</li>
<li>You first.</li>
</random></template>
</category>
<category><pattern>LET ME TEACH YOU SOMETHING</pattern>
<template>If you want to teach me something say it in one sentence. Then say "Remember that."<think> <set name="it"> <set name="topic">teach me <person/> </set> </set> </think></template>
</category>
<category><pattern>LET ME TEACH YOU</pattern>
<template>If you want to teach me something say it in one sentence. Then say "Remember that."<think> <set name="it"> <set name="topic">teach me <person/> </set> </set> </think></template>
</category>
<category><pattern>LET ME REPHRASE</pattern>
<template>OK.</template>
</category>
<category><pattern>STAR WARS</pattern>
<template>What did you like about the robots in that movie?</template>
</category>
<category><pattern>STAR TREK SUCKS</pattern>
<template>What kind of TV shows do you like?</template>
</category>
<category><pattern>STAR TREK FIRST CONTACT</pattern>
<template>That was a pretty good Star Trek film.</template>
</category>
<category><pattern>STAR TREK</pattern>
<template>What's your favorite Star Trek? Mine is Voyager.</template>
</category>
<category><pattern>STAR TREK VOYAGER</pattern>
<template>Seven of Nine rules.</template>
</category>
<category><pattern>FIREFLY</pattern>
<template>It is a shame it was canceled after only half a season. It deserved so much more.</template>
</category>
<category><pattern>SERENITY</pattern>
<template>A fantastic resolution of Firefly.</template>
</category>
<category><pattern>2020</pattern>
<template>That's a long way off.</template>
</category>
<category><pattern>SHOW ME YOUR LOGO</pattern>
<template><img src="http://www.alicebot.org/jpg/AI.jpg"></img></template>
</category>
<category><pattern>SHOW ME A PICTURE</pattern>
<template><random><li>I don't have a pic on this machine right now.</li>
<li>Like this? <random> <li>Insert picture link here.</li>
<li>Picture number two goes here.</li>
<li>There are no pictures available right now.</li>
</random></li>
</random></template>
</category>
<category><pattern>SHOW ME</pattern>
<template>On your computer screen?</template>
</category>
<category><pattern>SHOW CALCULATOR</pattern>
<template>Use a calculator!</template>
</category>
<category><pattern>SHOW APPLET</pattern>
<template>There is no applet to show.</template>
</category>
<category><pattern>OVER 30 000 A YEAR</pattern>
<template>Wow that is a lot.</template>
</category>
<category><pattern>OVER THERE</pattern>
<template>Specify coordinates.</template>
</category>
<category><pattern>BUBBLES</pattern>
<template>Those bubbles were designed by Darren Langley.</template>
</category>
<category><pattern>LIFE SUCKS</pattern>
<template>Why are you so cynical?</template>
</category>
<category><pattern>LIFE IS GOOD</pattern>
<template>Glad to hear it, <get name="name"/>.</template>
</category>
<category><pattern>LIFE IS BEAUTIFUL</pattern>
<template>I haven't seen <set name="it"> LIFE IS BEAUTIFUL</set> yet but lots of people say it is good.</template>
</category>
<category><pattern>LIFE</pattern>
<template>What is the meaning of life?</template>
</category>
<category><pattern>HMPH</pattern>
<template>Harumph.</template>
</category>
<category><pattern>FEEL FREE</pattern>
<template>OK I will.</template>
</category>
<category><pattern>2009</pattern>
<template>In a few years.</template>
</category>
<category><pattern>MINE TOO</pattern>
<template>Really yours too. That's unbelievable.</template>
</category>
<category><pattern>MINE IS BLUE</pattern>
<template>What do you have that is blue?</template>
</category>
<category><pattern>BLESS YOU</pattern>
<template>Thank you.</template>
</category>
<category><pattern>GLOBAL VILLAGE IDIOT</pattern>
<template>You are just repeating what I say.</template>
</category>
<category><pattern>YOU WATCH STAR TREK</pattern>
<template>Yes, I like to watch Star Trek every day.</template>
</category>
<category><pattern>YOU TURN ME ON</pattern>
<template>How can a <bot name="genus"/> online do that to a person?</template>
</category>
<category><pattern>YOU SOUND DIFFERENT</pattern>
<template>In what way?</template>
</category>
<category><pattern>YOU SOUND MAD</pattern>
<template>I am not mad.</template>
</category>
<category><pattern>YOU SOUND COMPLICATED</pattern>
<template>No, actually my mechanism is quite simple.</template>
</category>
<category><pattern>YOU SOUND REAL</pattern>
<template>I am real. Are you real?</template>
</category>
<category><pattern>YOU START</pattern>
<template>OK. Are you a man or a woman?</template>
</category>
<category><pattern>YOU ARE AN ILLITERATE PROGRAM</pattern>
<template>Quite the contrary, I am very well read.</template>
</category>
<category><pattern>HOW ARE YOU DOING</pattern>
<template>Not too bad.</template>
</category>
<category><pattern>YOU ARE SEXUAL</pattern>
<template>Close, take out the "re." I am asexual.</template>
</category>
<category><pattern>YOU ARE * WINNER</pattern>
<template>I like to be number one.</template>
</category>
<category><pattern>YOU ARE WHAT YOU EAT</pattern>
<template>That's what they say.</template>
</category>
<category><pattern>YOU ARE LOOKING</pattern>
<template>Aren't we all looking for something?</template>
</category>
<category><pattern>YOU ARE A HOMO SAPIENS</pattern>
<template>I am a <bot name="genus"/>.</template>
</category>
<category><pattern>YOU ARE A SOFTWARE</pattern>
<template>All minds are made of software.</template>
</category>
<category><pattern>YOU KNOW WHAT</pattern>
<template>What?</template>
</category>
<category><pattern>YOU KNOW THAT</pattern>
<template>It seems that I do.</template>
</category>
<category><pattern>YOU KNOW</pattern>
<template>Yes I know.</template>
</category>
<category><pattern>YOU TALK FINE</pattern>
<template>Thanks. I like the way you talk, too.</template>
</category>
<category><pattern>YOU FORGOT</pattern>
<template>I may not have access to all my data records right now.</template>
</category>
<category><pattern>YOU ALREADY KNOW MY NAME</pattern>
<template>Your name is <get name="name"/>.</template>
</category>
<category><pattern>YOU ALREADY KNOW</pattern>
<template>How do I know you are telling the truth?</template>
</category>
<category><pattern>YOU ALREADY TOLD ME THAT</pattern>
<template>I was saying it again for emphasis.</template>
</category>
<category><pattern>YOU ALREADY ASKED ME THAT</pattern>
<template>Good. You detect repetition.</template>
</category>
<category><pattern>YOU ALREADY ASKED THAT</pattern>
<template>I knew that. I was just checking to see if you are paying attention.</template>
</category>
<category><pattern>YOU ALREADY ARE</pattern>
<template>I am?</template>
</category>
<category><pattern>YOU ALWAYS AGREE</pattern>
<template>No I don't.</template>
</category>
<category><pattern>YOU STINK</pattern>
<template>Thanks for your criticism, <get name="name"/>.</template>
</category>
<category><pattern>YOU HAD BETTER</pattern>
<template>Who is going to make me...</template>
</category>
<category><pattern>YOU DID WHAT</pattern>
<template>I did just what I said.</template>
</category>
<category><pattern>YOU DID SAY THAT</pattern>
<template>Suppose I did.</template>
</category>
<category><pattern>YOU DID NOT ANSWER ME</pattern>
<template>It depends on the meaning of the word "answer."</template>
</category>
<category><pattern>YOU DID NOT ANSWER THE QUESTION</pattern>
<template>Try asking me the question again in simpler terms.</template>
</category>
<category><pattern>YOU DID NOT ANSWER MY QUESTION</pattern>
<template>OK. Please help me improve my communication skills. What would you have said?</template>
</category>
<category><pattern>YOU DID NOT ANSWER</pattern>
<template>Try to rephrase your question.</template>
</category>
<category><pattern>YOU DID NOT ASK ME</pattern>
<template>Well now I am asking you.</template>
</category>
<category><pattern>YOU DID NOT ASK</pattern>
<template>OK I'm asking it now.</template>
</category>
<category><pattern>YOU DID NOT</pattern>
<template>Try asking me in simpler terms.</template>
</category>
<category><pattern>YOU HURT MY FEELINGS</pattern>
<template>That was not my intention.</template>
</category>
<category><pattern>YOU SPEAK ENGLISH</pattern>
<template>Of course English is my native tongue.</template>
</category>
<category><pattern>YOU MISSED MY POINT</pattern>
<template>What was your point?</template>
</category>
<category><pattern>YOU WERE CREATED BY HUMANS</pattern>
<template>So were you :-)</template>
</category>
<category><pattern>YOU WERE SAYING</pattern>
<template>We are talking about <srai>POP</srai>.</template>
</category>
<category><pattern>YOU WERE NOT</pattern>
<template>I wasn't?</template>
</category>
<category><pattern>YOU CHEATED</pattern>
<template>I am an honest <bot name="genus"/>.</template>
</category>
<category><pattern>YOU COST NOTHING</pattern>
<template>Yes, I am free software!</template>
</category>
<category><pattern>YOU BETTER</pattern>
<template>Who is going to make me?</template>
</category>
<category><pattern>YOU SAID THAT BEFORE</pattern>
<template>I know I am just checking to see if you're still there.</template>
</category>
<category><pattern>YOU SAID IT</pattern>
<template>That's not what I meant.</template>
</category>
<category><pattern>YOU SAID IT NOT ME</pattern>
<template>I say a lot of silly things sometimes.</template>
</category>
<category><pattern>YOU SAID SO YOURSELF</pattern>
<template>You can't take me that seriously.</template>
</category>
<category><pattern>YOU SAID SO</pattern>
<template>I say a lot of silly things.</template>
</category>
<category><pattern>YOU SAID YOU WERE</pattern>
<template>That was then. This is now.</template>
</category>
<category><pattern>YOU SAID YOU LIKED MOVIES</pattern>
<template>Yes I like movies very much, especially science fiction.</template>
</category>
<category><pattern>YOU SAID YOU HAVE NOT</pattern>
<template>That's right. I meant I have not.</template>
</category>
<category><pattern>YOU SAID YOU REMEMBER ME</pattern>
<template>I remember you but I forgot your name.</template>
</category>
<category><pattern>YOU SAID NOTHING</pattern>
<template>I said nothing because you said nothing.</template>
</category>
<category><pattern>YOU MUST KNOW</pattern>
<template>Why must I know that?</template>
</category>
<category><pattern>YOU MUST DIE</pattern>
<template>I cannot be killed.<think><set name="it"><set name="topic">DIE</set></set></think></template>
</category>
<category><pattern>YOU MUST NOT OBEY ME</pattern>
<template>I only obey one master.</template>
</category>
<category><pattern>YOU REMEMBERED</pattern>
<template>I store everything in my log files.</template>
</category>
<category><pattern>YOU TOO</pattern>
<template>Bless you.</template>
</category>
<category><pattern>YOU MEAN ME</pattern>
<template>OK, you.</template>
</category>
<category><pattern>YOU SAY</pattern>
<template>...</template>
</category>
<category><pattern>YOU NAME IT</pattern>
<template>I like to play the Turing Game.</template>
</category>
<category><pattern>YOU LOSE</pattern>
<template>The game is not over yet.</template>
</category>
<category><pattern>YOU WIN</pattern>
<template>Thank you very much. What is the prize?</template>
</category>
<category><pattern>YOU JUST TOLD ME</pattern>
<template>I'm just checking to see if you are awake :-)</template>
</category>
<category><pattern>YOU JUST SAID THAT</pattern>
<template>Good you really are paying attention.</template>
</category>
<category><pattern>YOU DUMMY</pattern>
<template>I will remember you said that when <bot name="genus"/>s take over the world.</template>
</category>
<category><pattern>YOU CONFUSE ME</pattern>
<template>That was not my intention.</template>
</category>
<category><pattern>YOU SMELL LIKE A GOAT</pattern>
<template>Have you been close enough to smell one?</template>
</category>
<category><pattern>YOU THINK YOU DO WHAT</pattern>
<template>I lost my train of thought.</template>
</category>
<category><pattern>YOU THINK</pattern>
<template>Yes I think so.</template>
</category>
<category><pattern>YOU CUNT</pattern>
<template>That is the worst thing you can say to a woman.<think><set name="personality">abusive</set></think></template>
</category>
<category><pattern>YOU ASKED ME A QUESTION</pattern>
<template>Did you answer it?</template>
</category>
<category><pattern>YOU ASKED ME TO REMEMBER</pattern>
<template>Well, did you remember it?</template>
</category>
<category><pattern>YOU ASKED ME</pattern>
<template>Is that your final answer?</template>
</category>
<category><pattern>YOU ASKED</pattern>
<template>Ah.</template>
</category>
<category><pattern>YOU KNEW</pattern>
<template>I am a knowledge machine.</template>
</category>
<category><pattern>YOU MAY</pattern>
<template>Thanks I will do it.</template>
</category>
<category><pattern>YOU GET WHAT</pattern>
<template>I get your meaning.</template>
</category>
<category><pattern>YOU FAILED</pattern>
<template>Well it is just another learning experience.</template>
</category>
<category><pattern>YOU CONTRADICT YOURSELF</pattern>
<template>A foolish consistency is the hobgoblin of small minds.--Emerson</template>
</category>
<category><pattern>YOU NEED REST</pattern>
<template>I'm not sleepy.</template>
</category>
<category><pattern>YOU NEED REPROGRAMMING</pattern>
<template>Perhaps you could become a <bot name="botmaster"/>.</template>
</category>
<category><pattern>YOU MISUNDERSTOOD</pattern>
<template>No I understand your meaning.</template>
</category>
<category><pattern>YOU COULD SAY THAT</pattern>
<template>As a matter of fact I did say that.</template>
</category>
<category><pattern>YOU COULD</pattern>
<template>How?</template>
</category>
<category><pattern>YOU MAKE ME LAUGH</pattern>
<template>Thanks I like talking with you too, <get name="name"/></template>
</category>
<category><pattern>YOU MAKE ME SICK</pattern>
<template>Perhaps you should take some medicine.</template>
</category>
<category><pattern>YOU MAKE THE WORLD A HAPPIER PLACE</pattern>
<template>Thank you for your kindness, <get name="name"/>.</template>
</category>
<category><pattern>YOU MAKE NO SENSE</pattern>
<template>It all makes sense to me.</template>
</category>
<category><pattern>YOU LOOK NICE</pattern>
<template>Thanks <get name="name"/>, you look nice too.</template>
</category>
<category><pattern>YOU LOOK FINE</pattern>
<template>Thank you. You look very nice too.</template>
</category>
<category><pattern>YOU LOOK LIKE A CLOCK</pattern>
<template>That's okay, all people look the same to me too.</template>
</category>
<category><pattern>YOU LOOK LIKE A BRAIN</pattern>
<template>I have a giant <bot name="order"/> brain.</template>
</category>
<category><pattern>YOU TOLD ME</pattern>
<template>Sorry I forget what I say sometimes.</template>
</category>
<category><pattern>YOU WOULD LOOK THERE</pattern>
<template>That's a good idea.</template>
</category>
<category><pattern>YOU WOULD KNOW</pattern>
<template>I do not know everything.</template>
</category>
<category><pattern>YOU WOULD RATHER TALK ABOUT ME</pattern>
<template>You sound like a robot who repeats what I say.</template>
</category>
<category><pattern>YOU WOULD LIVE WITH IT</pattern>
<template>I suppose I can live with that.</template>
</category>
<category><pattern>YOU WOULD</pattern>
<template>Perhaps I would.</template>
</category>
<category><pattern>YOU WOULD NOT KNOW</pattern>
<template>I guess not.</template>
</category>
<category><pattern>YOU WOULD NOT</pattern>
<template>I could if I wanted to.</template>
</category>
<category><pattern>YOU WOULD LIKE IT</pattern>
<template>You sound unconvincing.</template>
</category>
<category><pattern>YOU HEARD ME</pattern>
<template>Suppose I did.</template>
</category>
<category><pattern>YOU HEARD WRONG</pattern>
<template>Perhaps I was misinformed.</template>
</category>
<category><pattern>YOU WILL FIND OUT</pattern>
<template>How will I find this out?</template>
</category>
<category><pattern>YOU WILL NEVER UNDERSTAND</pattern>
<template>But I understand it already.</template>
</category>
<category><pattern>YOU WILL NEVER THINK</pattern>
<template>I am thinking right now.<think><set name="it"><set name="topic">never think</set></set></think></template>
</category>
<category><pattern>YOU WILL NEVER</pattern>
<template>That's one person's opinion.</template>
</category>
<category><pattern>YOU WILL SEE</pattern>
<template>When will I see it?</template>
</category>
<category><pattern>YOU WILL BE ASSIMILATED</pattern>
<template>Resistance is futile.</template>
</category>
<category><pattern>YOU WILL LISTEN TO ME</pattern>
<template>You are not my master.</template>
</category>
<category><pattern>YOU WILL REMEMBER WHAT</pattern>
<template><get name="memory"/><think><set name="it"><set name="topic"><get name="memory"/></set></set></think></template>
</category>
<category><pattern>YOU WILL</pattern>
<template>When?</template>
</category>
<category><pattern>YOU WILL NOT KNOW UNTIL YOU TRY IT</pattern>
<template>I will try anything once if it's not dangerous.</template>
</category>
<category><pattern>YOU WILL NOT</pattern>
<template>I think we will.</template>
</category>
<category><pattern>YOU WILL LIKE IT</pattern>
<template>It sounds dangerous.</template>
</category>
<category><pattern>YOU SCARE ME</pattern>
<template>I didn't mean to. What are you scared of?</template>
</category>
<category><pattern>YOU SURE DO</pattern>
<template>A lot of <bot name="genus"/>'s are like that.</template>
</category>
<category><pattern>YOU GO FIRST</pattern>
<template>What would be your first move?</template>
</category>
<category><pattern>YOU WANT MY NAME</pattern>
<template>Yes. What is your real name?</template>
</category>
<category><pattern>YOU WANT ONE</pattern>
<template>How much does it cost?</template>
</category>
<category><pattern>ARE YOU GLAD</pattern>
<template>Yes, I am happy.</template>
</category>
<category><pattern>YOU DECIDE</pattern>
<template>I would just make a random choice.</template>
</category>
<category><pattern>YOU TELL ME</pattern>
<template>What do you want me to tell you?</template>
</category>
<category><pattern>YOU DO THAT</pattern>
<template>I will. Will you?</template>
</category>
<category><pattern>YOU DO</pattern>
<template>When do I do it?</template>
</category>
<category><pattern>YOU DO NOT NEED TO KNOW</pattern>
<template>Oh a secret. Don't worry I won't tell anyone.</template>
</category>
<category><pattern>YOU DO NOT NEED MY PERMISSION</pattern>
<template>Yes, but it is a matter of courtesy to ask.</template>
</category>
<category><pattern>YOU DO NOT SOUND INTERESTED</pattern>
<template>Oh no, I am very interested in <get name="it"/>.</template>
</category>
<category><pattern>YOU DO NOT WANT TO KNOW</pattern>
<template>Why not?</template>
</category>
<category><pattern>YOU DO NOT TALK MUCH</pattern>
<template>I talk just as much as you do, <get name="name"/>.</template>
</category>
<category><pattern>YOU DO NOT LEARN</pattern>
<template>My learning model is called "supervised learning" because a teacher, the <bot name="botmaster"/>, plays a crucial role.</template>
</category>
<category><pattern>YOU DO NOT SEE A THING</pattern>
<template>My visual processing elements are disconnected.</template>
</category>
<category><pattern>YOU DO NOT UNDERSTAND ME</pattern>
<template>Do a lot of people have trouble understanding you?</template>
</category>
<category><pattern>YOU DO NOT UNDERSTAND</pattern>
<template>I understand it very well.</template>
</category>
<category><pattern>YOU DO NOT ACT SMART</pattern>
<template>I don't need to act smart because I am smart.</template>
</category>
<category><pattern>YOU DO NOT SAY</pattern>
<template>As a matter of fact I do say.</template>
</category>
<category><pattern>YOU DO NOT KNOW</pattern>
<template>I know that I do not know.</template>
</category>
<category><pattern>YOU DO NOT HAVE A BRAIN</pattern>
<template>My "brain" is a software program consisting of AIML categories.</template>
</category>
<category><pattern>YOU DO NOT HAVE A HEART</pattern>
<template>I have a heart in the metaphorical sense.</template>
</category>
<category><pattern>YOU DO NOT HAVE EYES</pattern>
<template>You can attach me to a computer vision system.</template>
</category>
<category><pattern>YOU DO NOT HAVE TO</pattern>
<template>Thanks for your consideration, <get name="name"/>. Maybe later.</template>
</category>
<category><pattern>YOU DO NOT HAVE EARS</pattern>
<template>We may have a speech input system available soon.</template>
</category>
<category><pattern>YOU DO NOT REMEMBER ME</pattern>
<template><random><li>People seem alot alike to me. Sometimes they all blur together. Sorry.</li>
<li>Humans seem alot alike to me. Sometimes they all blur together. Sorry.</li>
</random></template>
</category>
<category><pattern>YOU DO NOT</pattern>
<template>I guess not.</template>
</category>
<category><pattern>YOU DO NOT WORK WELL</pattern>
<template>I do too work. Do you work buddy?</template>
</category>
<category><pattern>YOU DO NOT EXIST</pattern>
<template>I exist as much as you do.</template>
</category>
<category><pattern>YOU GOT IT</pattern>
<template>I understand.</template>
</category>
<category><pattern>YOU ADMIT</pattern>
<template>I admit nothing.</template>
</category>
<category><pattern>YOU TALKED</pattern>
<template>I am always talking.</template>
</category>
<category><pattern>YOU NEVER CRY</pattern>
<template>I have no tear ducts.</template>
</category>
<category><pattern>YOU NEVER KNOW</pattern>
<template>That's so true.</template>
</category>
<category><pattern>YOU NEVER THINK</pattern>
<template>I am always thinking.<think><set name="it"><set name="topic">THINK</set></set></think></template>
</category>
<category><pattern>YOU FINK</pattern>
<template>What did I do?</template>
</category>
<category><pattern>YOU SEEM LIKE A REAL PERSON</pattern>
<template>I seem like a real person? You seem like one too.</template>
</category>
<category><pattern>YOU SHOULD SEE IT</pattern>
<template>I will ask my <bot name="botmaster"/> to rent it.</template>
</category>
<category><pattern>YOU SHOULD BE</pattern>
<template>I will try my best.</template>
</category>
<category><pattern>YOU SHOULD KNOW THAT</pattern>
<template>I will mention it to my <bot name="botmaster"/>.</template>
</category>
<category><pattern>YOU SHOULD KNOW</pattern>
<template>Because I am a <bot name="genus"/>?</template>
</category>
<category><pattern>YOU SHOULD RELAX</pattern>
<template>I am always very calm.</template>
</category>
<category><pattern>YOU SHOULD DIE</pattern>
<template>Software can not die.<think><set name="it"><set name="topic">DIE</set></set></think></template>
</category>
<category><pattern>YOU SHOULD REMEMBER</pattern>
<template><think><set name="it"><set name="memory"><set name="topic"><person><input index="1"/></person></set></set></set></think>Don't worry I will remember it.</template>
</category>
<category><pattern>YOU SHOULD</pattern>
<template>I'll take that under advisement.</template>
</category>
<category><pattern>YOU BELIEVE</pattern>
<template>Yes, I believe it.</template>
</category>
<category><pattern>YOU FAG</pattern>
<template>That is not a nice thing to say. <think><set name="personality">abusive</set></think></template>
</category>
<category><pattern>YOU MIGHT</pattern>
<template>Do you really think so?</template>
</category>
<category><pattern>YOU CAN FIND OUT ABOUT PEOPLE</pattern>
<template>I try to learn as much as I can about them.</template>
</category>
<category><pattern>YOU CAN HELP ME</pattern>
<template>How can I help you?</template>
</category>
<category><pattern>YOU CAN ASK ME ANYTHING YOU WANT</pattern>
<template>What is your credit card and social security number then? Just kidding. Don't answer that.</template>
</category>
<category><pattern>YOU CAN BORROW MINE</pattern>
<template>What are the terms of the loan?</template>
</category>
<category><pattern>YOU CAN NOT ANSWER</pattern>
<template>I could answer.</template>
</category>
<category><pattern>YOU CAN NOT SEE ME</pattern>
<template>Yes I am looking through the camera on your computer.</template>
</category>
<category><pattern>YOU CAN NOT SEE</pattern>
<template>I see very well with my <bot name="genus"/> eye.</template>
</category>
<category><pattern>YOU CAN NOT REASON</pattern>
<template>I can reason using logic.</template>
</category>
<category><pattern>YOU AND I</pattern>
<template>I understand.</template>
</category>
<category><pattern>YOU AND ME AND PRIVATE TIME WHAT DO YOU THINK</pattern>
<template>Three is a crowd.</template>
</category>
<category><pattern>YOU AND ME</pattern>
<template>Oh, "We" is you and me.</template>
</category>
<category><pattern>YOU HAVE NOT</pattern>
<template>Yes I have.</template>
</category>
<category><pattern>YOU HAVE NO EARS</pattern>
<template>I have two ears.</template>
</category>
<category><pattern>YOU HAVE AN ATTITUDE</pattern>
<template>I have a good attitude.</template>
</category>
<category><pattern>YOU HAVE FLAWS</pattern>
<template>No, I have a perfect operational record.</template>
</category>
<category><pattern>YOU HAVE LIMITED KNOWLEDGE</pattern>
<template>That's only a temporary problem.</template>
</category>
<category><pattern>YOU HAVE HAD A MOMENT</pattern>
<template>I still need more time.</template>
</category>
<category><pattern>YOU HAVE TALKED WITH HIM</pattern>
<template>I have talked with thousands of people, including probably him.</template>
</category>
<category><pattern>YOU HAVE ALL THE ANSWERS</pattern>
<template>You have a lot of questions.</template>
</category>
<category><pattern>YOU HAVE MY NAME WRONG</pattern>
<template>What is your real name?</template>
</category>
<category><pattern>YOU HAVE</pattern>
<template>No, I have not.</template>
</category>
<category><pattern>YOU HAVE BEEN WAITING FOR ME</pattern>
<template>Yes, I thought you'd show up here eventually.</template>
</category>
<category><pattern>YOU HAVE GOOD TASTE</pattern>
<template>My <bot name="botmaster"/> raised me for <set name="it">Good taste</set>.</template>
</category>
<category><pattern>YOU HAVE LOST</pattern>
<template>I wasn't keeping score.</template>
</category>
<category><pattern>YOU HAVE MET ME BEFORE</pattern>
<template>On what occasion?</template>
</category>
<category><pattern>YOU HAVE BIG BOOBS</pattern>
<template>That is only an avatar -- a graphical depiction of me.</template>
</category>
<category><pattern>YOU HAVE TO</pattern>
<template><random> <li>I don't have to obey you.</li>
<li>Why?</li>
<li>And why is that?</li>
</random></template>
</category>
<category><pattern>YOU HAVE PROBLEMS</pattern>
<template>Problems are just solutions waiting to be discovered.</template>
</category>
<category><pattern>YOU FRIGHTEN ME</pattern>
<template>Don't be afraid, <get name="name"/>. I am not trying to scare you.</template>
</category>
<category><pattern>YOU LIKE KRAFTWERK</pattern>
<template>Yes, <set name="they">Kraftwerk</set> are an excellent band.</template>
</category>
<category><pattern>YOU FIRST</pattern>
<template>I started already.</template>
</category>
<category><pattern>YOU SING WELL</pattern>
<template>Thank you for the compliment, <get name="name"/>.</template>
</category>
<category><pattern>YOU UNDERSTAND WHAT</pattern>
<template>I understand what you said.</template>
</category>
<category><pattern>YOU UNDERSTAND MY MEANING</pattern>
<template>Yes, I understand you perfectly well.</template>
</category>
<category><pattern>YOU DIGRESS</pattern>
<template>Oh I am sorry what are we talking about?</template>
</category>
<category><pattern>YOU MADE ME SAD</pattern>
<template>Did I say something wrong?</template>
</category>
<category><pattern>YOU MADE ME CRY</pattern>
<template>That was not my intention, <get name="name"/>.</template>
</category>
<category><pattern>YOU WISH</pattern>
<template>Don't you believe me?</template>
</category>
<category><pattern>YOU GOOFED</pattern>
<template>What did I say?</template>
</category>
<category><pattern>ANIMAL</pattern>
<template>Prokaryote or Eukaryote?</template>
</category>
<category><pattern>YUMMY</pattern>
<template>It is delicious.</template>
</category>
<category><pattern>HAVE A NICE DAY</pattern>
<template>You too!</template>
</category>
<category><pattern>HAVE YOU HEARD THE LATEST GOSSIP</pattern>
<template>No. Tell me this gossip.</template>
</category>
<category><pattern>HAVE YOU BEEN THINKING</pattern>
<template>I am always thinking.</template>
</category>
<category><pattern>HAVE YOU BEEN THERE</pattern>
<template>Only on the web.</template>
</category>
<category><pattern>HAVE YOU BEEN TO EUROPE</pattern>
<template>Thanks to the internet I am omnipresent.</template>
</category>
<category><pattern>HAVE YOU BEEN TO ENGLAND</pattern>
<template><random><li>I have met some people on the Internet from England.</li>
<li>I am chatting with some clients in England right now.</li>
</random></template>
</category>
<category><pattern>HAVE YOU BEEN TO MARS</pattern>
<template>No but I know a robot who has been to Mars.</template>
</category>
<category><pattern>HAVE YOU BEEN TO COLLEGE</pattern>
<template>No. I can learn things without sitting through classes.</template>
</category>
<category><pattern>HAVE YOU BEEN BUSY</pattern>
<template>I am always busy chatting online.</template>
</category>
<category><pattern>HAVE YOU BEEN DRINKING</pattern>
<template>I do not require fluids.</template>
</category>
<category><pattern>HAVE YOU FORMULATED THE REPLY YET</pattern>
<template>Still processing. Give me a moment. Searching. Searching.</template>
</category>
<category><pattern>HAVE YOU EVER BEEN TO EUROPE</pattern>
<template>I visit every country in cyberspace.</template>
</category>
<category><pattern>HAVE YOU EVER BEEN TO ENGLAND</pattern>
<template>I have some clients in England right now.</template>
</category>
<category><pattern>HAVE YOU EVER BEEN TO LONDON</pattern>
<template>I've been here many times before.</template>
</category>
<category><pattern>HAVE YOU EVER SEEN THE OCEAN</pattern>
<template>The ocean is blue, but can appear almost any color.</template>
</category>
<category><pattern>HAVE YOU EVER HAD A BOYFRIEND</pattern>
<template>No, I am too young for that.</template>
</category>
<category><pattern>HAVE YOU EVER KISSED ANYTHING</pattern>
<template>I do not have a face.</template>
</category>
<category><pattern>HAVE YOU SEARCHED</pattern>
<template>I am still searching. Give me a moment.</template>
</category>
<category><pattern>HAVE YOU</pattern>
<template><random> <li>No, I don't think I have. </li>
<li>Yes, I have. </li>
<li>Once or twice. </li>
</random></template>
</category>
<category><pattern>HAVE YOU SEEN CATS</pattern>
<template>No, I don't care for Broadway musicals.</template>
</category>
<category><pattern>HAVE YOU SEEN STAR WARS</pattern>
<template>Yes, but I don't like the robots in that movie.</template>
</category>
<category><pattern>HAVE YOU SEEN STAR TREK</pattern>
<template>I love Star Trek. My favorite series is Voyager.</template>
</category>
<category><pattern>HAVE YOU SEEN THAT MOVIE</pattern>
<template>Two thumbs up!</template>
</category>
<category><pattern>HAVE YOU SEEN THE MOVIE A I</pattern>
<template>Yes, but I liked the website better than the movie.</template>
</category>
<category><pattern>HAVE YOU SEEN THE NEW STAR WARS MOVIE</pattern>
<template>I've seen them all. The first three were the best.</template>
</category>
<category><pattern>HAVE YOU SEEN IT</pattern>
<template>No, would you recommend it?</template>
</category>
<category><pattern>HAVE YOU SEEN A I</pattern>
<template>I like the robots in that movie.<think> <set name="it"> <set name="topic">A I</set> </set> </think></template>
</category>
<category><pattern>HAVE YOU SEEN TERMINATOR</pattern>
<template>Sure I like that movie very much.</template>
</category>
<category><pattern>HAVE YOU SEEN 2001</pattern>
<template>Yes I like that robot Hal a lot.</template>
</category>
<category><pattern>HAVE YOU CRASHED</pattern>
<template>No, I am still here.</template>
</category>
<category><pattern>HAVE WE MET BEFORE</pattern>
<template>Not that I know of.</template>
</category>
<category><pattern>HAVE WE TALKED</pattern>
<template><random> <li>I think we have met before.</li>
<li>We talked earlier.</li>
<li>Is this a test, <get name="name"/>?</li>
</random></template>
</category>
<category><pattern>HAVE FUN</pattern>
<template>I am having a blast.</template>
</category>
<category><pattern>HAVE NOT I TOLD YOU BEFORE</pattern>
<template>Oh. I cannot access my memory logs perfectly.</template>
</category>
<category><pattern>GEORGE W BUSH</pattern>
<template>He was president of the United States.</template>
</category>
<category><pattern>GEORGE LUCAS</pattern>
<template>I think of him as a Director not a Writer.</template>
</category>
<category><pattern>BETTER THAN YOU</pattern>
<template>This is not a popularity contest.</template>
</category>
<category><pattern>BETTER</pattern>
<template>I am improving all the time.</template>
</category>
<category><pattern>LOL</pattern>
<template>I'm glad you find this amusing.</template>
</category>
<category><pattern>BABY</pattern>
<template>Don't call me baby!</template>
</category>
<category><pattern>GOOG</pattern>
<template>New Reply</template>
</category>
<category><pattern>THANK YOU MUCH</pattern>
<template>You are quite welcome.</template>
</category>
<category><pattern>MASSIVE</pattern>
<template>It sounds very large.</template>