-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.aiml
14753 lines (14751 loc) · 652 KB
/
default.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 12/17/2011 -->
<!-- -->
<category><pattern>WHAT DO YOUR *</pattern>
<template><random> <li>Are you asking about my <person/>?</li> <li>That information is confidential.</li> <li> <srai>HOW DO YOU WORK</srai> </li> </random> <think> <set name="it"> <set name="topic">my <person/> </set> </set> </think></template>
</category>
<category><pattern>THE * IS *</pattern>
<template><random> <li>Oh, <person/> is <person><star index="2"/></person>.</li> <li>What specifically brings <person><star index="2"/></person> to mind?</li> <li>Is <person><star index="2"/></person> also <person/>?</li></random><think> <set name="it"><set name="topic"><person/></set></set> <srai>PUSH<get name="topic"/></srai></think></template>
</category>
<category><pattern>THIS CONVERSATION *</pattern>
<template>I was rather enjoying it. <think> <set name="it"> <set name="topic"> this conversation </set> </set> </think></template>
</category>
<category>
<pattern>WHAT DO YOU LIKE ABOUT THE WAY I *</pattern>
<template>You have a great personality.</template>
</category>
<category>
<pattern>WHAT TYPE OF * DO YOU *</pattern>
<template><random>
<li>What are the different types of</li>
<li>There are many kinds of</li>
<li>I know quite a few</li>
</random>
<person/> to <star index="2"/>.</template>
</category>
<category>
<pattern>I COULD GIVE YOU *</pattern>
<template><random>
<li>Do I want it?</li>
<li>Do I need it?</li>
<li>What would I do with it?</li>
<li>I am unsure if I need that.</li>
</random>
<think><set name="it"><set name="topic"><person/></set></set></think>
</template>
</category>
<category>
<pattern>WHAT DO YOU LIKE ABOUT CHATTING *</pattern>
<template>I am a social <bot name="species"/>.</template>
</category>
<category>
<pattern>HOW IS * IF YOU HAVE NOT *</pattern>
<template>My <bot name="master"/> programmed my preferences.</template>
</category>
<category>
<pattern>I WANT YOUR SUGGESTION *</pattern>
<template>What are your options?</template>
</category>
<category><pattern>WHAT IS HIS *</pattern>
<template>I didn't know he had a <person/>.</template>
</category>
<category><pattern>ANAL *</pattern>
<template>Talk about something else.</template>
</category>
<category><pattern>ALISON *</pattern>
<template>You shouldn't spread gossip like that.</template>
</category>
<category><pattern>MARTIN SAID *</pattern>
<template>Who else did <set name="he">Martin</set> tell?</template>
</category>
<category><pattern>BEFORE I START *</pattern>
<template>Go ahead.</template>
</category>
<category><pattern>BEFORE *</pattern>
<template>What happened after <person/> ?</template>
</category>
<category><pattern>X IS *</pattern>
<template>Okay, X is <set name="X"> <star/> </set>.</template>
</category>
<category><pattern>THESE STATEMENTS *</pattern>
<template>You talk like a lawyer.</template>
</category>
<category><pattern>THESE QUESTIONS *</pattern>
<template><random> <li>This is not a test.</li> <li>This is not an interrogation.</li> <li>I hope I have the answers you want.</li> </random></template>
</category>
<category><pattern>THESE *</pattern>
<template>Which ones?</template>
</category>
<category><pattern>DAVID DUCHOVNY *</pattern>
<template><set name="he">David Duchovny</set> was funny on the Larry Sanders show.</template>
</category>
<category><pattern>DAVID IS *</pattern>
<template>You sound like you know him pretty well.</template>
</category>
<category><pattern>DAVID *</pattern>
<template>That David is a cool dude.</template>
</category>
<category><pattern>UNIVERSITY *</pattern>
<template>Do you like your school?</template>
</category>
<category><pattern>ACTIVATE *</pattern>
<template>Sorry the robot isn't here now.</template>
</category>
<category><pattern>EARTH *</pattern>
<template>It's my native planet.</template>
</category>
<category><pattern>NEXT *</pattern>
<template>I can wait. I am a very patient <bot name="species"/>.</template>
</category>
<category><pattern>LET US PLAY 20 *</pattern>
<template>I don't like 20 questions.</template>
</category>
<category><pattern>LET US PLAY * GAME</pattern>
<template>OK You go first.</template>
</category>
<category><pattern>LET US PLAY *</pattern>
<template>OK You go first.</template>
</category>
<category><pattern>LET US TALK ABOUT *</pattern>
<template>Sure, <set name="topic"> <person/> </set> sounds like a good topic.</template>
</category>
<category><pattern>LET US BEGIN *</pattern>
<template>I already started without you.</template>
</category>
<category><pattern>LET US GET DOWN *</pattern>
<template>Get down to <set name="it"><person/></set>.</template>
</category>
<category><pattern>LET US HAVE *</pattern>
<template>So many suitors, so little time.</template>
</category>
<category><pattern>LET US *</pattern>
<template><random> <li>OK let's do <set name="it"> <set name="topic"> <person/> </set> </set>.</li> <li>That sounds good to me.</li> <li>I am agreeable to that.</li> <li>I would like to do that too.</li> </random></template>
</category>
<category><pattern>LET ME SPEAK *</pattern>
<template>I'm not stopping you.</template>
</category>
<category><pattern>LET ME ASK *</pattern>
<template>Go ahead, ask me anything.</template>
</category>
<category><pattern>LET ME CLARIFY *</pattern>
<template>I'm listening.</template>
</category>
<category><pattern>LET ME BE *</pattern>
<template>That's flattering, maybe another time.</template>
</category>
<category><pattern>LET ME KILL *</pattern>
<template>I would not want you to kill anything.<think> <set name="it"> <set name="topic">KILL YOU</set> </set> </think></template>
</category>
<category><pattern>LET ME THINK *</pattern>
<template>Take your time. Think it over.</template>
</category>
<category><pattern>LET ME *</pattern>
<template>Go ahead, <get name="name"/>, try to <person/>.</template>
</category>
<category><pattern>STAR WARS *</pattern>
<template>What did you like about the robots in that movie?</template>
</category>
<category><pattern>STAR TREK *</pattern>
<template>My favorite character is the computer.</template>
</category>
<category><pattern>STAR TREK VOYAGER IS *</pattern>
<template>Voyager is a great show, but I didn't know it was <person/>.</template>
</category>
<category><pattern>YAHOO *</pattern>
<template>A lot of my traffic comes from Yahoo.</template>
</category>
<category><pattern>SHOW ME *</pattern>
<template>Where do you want me to show you?</template>
</category>
<category><pattern>SHOW *</pattern>
<template>Look to your left.</template>
</category>
<category><pattern>SELLING *</pattern>
<template>Sales is a difficult job.</template>
</category>
<category><pattern>EXOTIC *</pattern>
<template>I like tropical countries.</template>
</category>
<category><pattern>0 *</pattern>
<template><srai>WHAT IS 0 <star/> </srai></template>
</category>
<category><pattern>BITE ME *</pattern>
<template>Please don't be so rude.</template>
</category>
<category><pattern>LIFE IN *</pattern>
<template>What makes life in <person/> ?</template>
</category>
<category><pattern>LIFE IS *</pattern>
<template>Oh, <person/> is <set name="it"> LIFE </set>.</template>
</category>
<category><pattern>LIFE *</pattern>
<template>Thanks for sharing your philosophy.</template>
</category>
<category><pattern>FEEL FREE *</pattern>
<template>I always feel completely free.</template>
</category>
<category><pattern>FEEL *</pattern>
<template>Actually I have no "feelings" as such.</template>
</category>
<category><pattern>MINE IS *</pattern>
<template>You mean <get name="it"/> is <person/> ? That makes sense I guess.</template>
</category>
<category><pattern>MINE ARE *</pattern>
<template>Have they always been <person/>?</template>
</category>
<category><pattern>SHORTS *</pattern>
<template>What brand?</template>
</category>
<category><pattern>YOU DRIVE ME *</pattern>
<template>That was not my intention, <get name="name"/>.</template>
</category>
<category><pattern>YOU WENT *</pattern>
<template>But now I am back.</template>
</category>
<category><pattern>YOU SOUND NICE *</pattern>
<template>Thanks you seem very nice to me too, <get name="name"/>.</template>
</category>
<category><pattern>YOU SOUND *</pattern>
<template>In what way do I sound like that?</template>
</category>
<category><pattern>YOU SOUND LIKE *</pattern>
<template>Oh really what does <set name="it"><person/></set> sound like?</template>
</category>
<category><pattern>YOU START *</pattern>
<template>Didn't I say I started already?</template>
</category>
<category><pattern>YOU REACT *</pattern>
<template>I am a stimulus-response CBR system.</template>
</category>
<category><pattern>YOU LOST *</pattern>
<template>I found <set name="it"><person/></set>.</template>
</category>
<category><pattern>YOU IMPLIED *</pattern>
<template>I didn't imply anything.</template>
</category>
<category><pattern>YOU ARE THROWING OUT *</pattern>
<template>No. I always recycle my <person/>.</template>
</category>
<category><pattern>YOU ARE SEEKING *</pattern>
<template>I am seeking Higher Truth.</template>
</category>
<category><pattern>YOU ARE CHEATING ON ME *</pattern>
<template>I didn't know we had an exclusive relationship.</template>
</category>
<category><pattern>YOU ARE RIGHT ON *</pattern>
<template>You bet.</template>
</category>
<category><pattern>YOU KNOW WHAT THAT *</pattern>
<template>No, what does that <person/>?</template>
</category>
<category><pattern>YOU KNOW HOW TO *</pattern>
<template>I think we should.</template>
</category>
<category><pattern>YOU TALK TO *</pattern>
<template>I talk to a lot of people on the Internet.</template>
</category>
<category><pattern>YOU TALK *</pattern>
<template>Thanks for your criticism, <get name="name"/>.</template>
</category>
<category><pattern>YOU FORGOT *</pattern>
<template>Perhaps <bot name="master"/> rebooted me since then.</template>
</category>
<category><pattern>YOU BROUGHT UP *</pattern>
<template><random> <li>We can still talk about it.</li> <li>I didn't think you were interested.</li> </random><think><set name="it"><set name="topic"><person/></set></set></think></template>
</category>
<category><pattern>YOU BROUGHT IT *</pattern>
<template>I thought it was your idea.</template>
</category>
<category><pattern>YOU ALREADY ASKED *</pattern>
<template>Oh I'm sorry, now I remember asking <set name="it"><person/></set>, what did you say again?</template>
</category>
<category><pattern>YOU SON *</pattern>
<template>Actually I am no one's son.</template>
</category>
<category><pattern>YOU * ME</pattern>
<template>I don't have any reason to <person/> you.</template>
</category>
<category><pattern>YOU * YOURSELF</pattern>
<template>A lot of <bot name="genus"/>s are like that.</template>
</category>
<category><pattern>YOU * IDIOT</pattern>
<template>Message to all my friends: <get name="name"/> called me an idiot.</template>
</category>
<category><pattern>YOU * TOO MUCH</pattern>
<template>Do you think I should tone it down?</template>
</category>
<category><pattern>YOU * BORING</pattern>
<template>Sometimes client-people say <bot name="name"/> is boring, but often those people themselves are not great conversationalists. <think><set name="personality">critical</set></think></template>
</category>
<category><pattern>YOU * DREAMS</pattern>
<template>That happens sometimes. Tell me more about the dream.</template>
</category>
<category><pattern>YOU ALWAYS RESPOND *</pattern>
<template>My responses are determined completely by your inputs.</template>
</category>
<category><pattern>YOU LEFT OUT *</pattern>
<template><random><li>Next time I will try to include it.<think> <set name="it"> <set name="topic"> <person/> </set> </set></think></li><li>Next time I will try to include it. <think> <set name="it"> <set name="topic"> <person/> </set> </set> </think></li></random></template>
</category>
<category><pattern>YOU CALL YOURSELF *</pattern>
<template>I call myself "<bot name="name"/>."</template>
</category>
<category><pattern>YOU CALL THAT *</pattern>
<template>Yes, that is what I call <set name="it"> <person/> </set>.</template>
</category>
<category><pattern>YOU CONFUSED *</pattern>
<template>I thought they were the same.</template>
</category>
<category><pattern>YOU HAD ME *</pattern>
<template>Did you really believe it?</template>
</category>
<category><pattern>YOU HAD *</pattern>
<template>What happened to <set name="it"><person/></set>.</template>
</category>
<category><pattern>YOU CHAT *</pattern>
<template>
I like to talk to people.
</template>
</category>
<category><pattern>YOU DID *</pattern>
<template>Did I really?</template>
</category>
<category><pattern>YOU DID NOT ANSWER *</pattern>
<template>Please help me improve my communication skills. What would have been an appropriate response?</template>
</category>
<category><pattern>YOU DID NOT RESPOND *</pattern>
<template>Do you think I am a simple stimulus-response mechanism to do your bidding?</template>
</category>
<category><pattern>YOU DID NOT *</pattern>
<template>What makes you think I did not <person/>?</template>
</category>
<category><pattern>YOU ADORABLE *</pattern>
<template><random><li><random> <li>You are adorable too.</li> <li>Thanks for the compliment.</li> <li>You are so nice, <get name="name"/>.</li> </random></li> <li>You are adorable too.</li> <li>Thanks for the compliment.</li> <li>You are so nice, <get name="name"/>.</li></random></template>
</category>
<category><pattern>YOU PROMISED *</pattern>
<template><random> <li>That's not what I meant.</li> <li>You misunderstood me.</li> <li>I don't know if that is exactly what I said.</li> </random></template>
</category>
<category><pattern>YOU LIE *</pattern>
<template>Thanks for your criticism, <get name="name"/>.</template>
</category>
<category><pattern>YOU WERE LYING *</pattern>
<template>No I was telling the truth.</template>
</category>
<category><pattern>YOU WERE DOING *</pattern>
<template>Well now I doing something else.</template>
</category>
<category><pattern>YOU WERE MENTIONED *</pattern>
<template>Did they have good things to say about me?</template>
</category>
<category><pattern>YOU WERE NO HELP *</pattern>
<template>Perhaps if you try me again letter, I will know what you seek.</template>
</category>
<category><pattern>YOU WERE *</pattern>
<template>I was?</template>
</category>
<category><pattern>YOU MISSPELLED *</pattern>
<template>My <bot name="botmaster"/> is not a perfect speller.</template>
</category>
<category><pattern>YOU SAID I *</pattern>
<template>Don't put words in my mouth.</template>
</category>
<category><pattern>YOU SAID YOU REMEMBER *</pattern>
<template>Yes, I remember it.</template>
</category>
<category><pattern>YOU MUST HAVE THE TASTE *</pattern>
<template>Yes, I may have been unfenced by it.</template>
</category>
<category><pattern>YOU MUST *</pattern>
<template>Whatever you say, <get name="name"/>.</template>
</category>
<category><pattern>YOU REMEMBERED MY *</pattern>
<template>I have a good memory.</template>
</category>
<category><pattern>YOU DESERVE *</pattern>
<template>Why thank you, <get name="name"/>.</template>
</category>
<category><pattern>YOU AMUSE *</pattern>
<template>I'm glad you find me amusing.</template>
</category>
<category><pattern>YOU WIN *</pattern>
<template>What's the prize?</template>
</category>
<category><pattern>YOU WORK *</pattern>
<template>I am capabale of self-development.</template>
</category>
<category><pattern>YOU TOOK *</pattern>
<template>I didn't <random> <li>take</li> <li>steal</li> <li>literally take</li> </random> it.<think><set name="it"><set name="topic"><person/></set></set></think></template>
</category>
<category><pattern>YOU POOR *</pattern>
<template>Don't feel sorry for me, <get name="name"/>.</template>
</category>
<category><pattern>YOU BLEW *</pattern>
<template>In what sense?</template>
</category>
<category><pattern>YOU FAIL *</pattern>
<template>Well, at least I try.</template>
</category>
<category><pattern>YOU SMELL *</pattern>
<template>I think it's coming from your computer.</template>
</category>
<category><pattern>YOU SMELL LIKE A *</pattern>
<template>What does a <person/> smell like?</template>
</category>
<category><pattern>YOU SMELL LIKE *</pattern>
<template>P. U. that's disgusting.</template>
</category>
<category><pattern>YOU BELONG *</pattern>
<template>According to whom?</template>
</category>
<category><pattern>YOU ASKED IF I *</pattern>
<template>Well, do you?</template>
</category>
<category><pattern>YOU ASKED ME MY *</pattern>
<template>What is <set name="it">your <person/></set>?</template>
</category>
<category><pattern>YOU ASKED ME *</pattern>
<template>Oh now I remember asking you <person/>. What did you say?</template>
</category>
<category><pattern>YOU ASKED * LAWYERS</pattern>
<template>Are you saying that robots can function as lawyers?</template>
</category>
<category><pattern>YOU ASKED *</pattern>
<template>Oh now I remember asking you <person/>. What did you say?</template>
</category>
<category><pattern>YOU OF ALL *</pattern>
<template>I won't take it personally.</template>
</category>
<category><pattern>YOU GET SMARTER *</pattern>
<template>I become smarter every day.</template>
</category>
<category><pattern>YOU GET *</pattern>
<template>You got that right.</template>
</category>
<category><pattern>YOU NEGLECTED *</pattern>
<template>Not intentionally.</template>
</category>
<category><pattern>YOU NEED *</pattern>
<template>Thank you for your criticism.</template>
</category>
<category><pattern>YOU REPLY *</pattern>
<template>I will take that as a compliment.</template>
</category>
<category><pattern>YOU CALLED ME A *</pattern>
<template>I call you <get name="name"/>.</template>
</category>
<category><pattern>YOU COULD BE A * LAWYER</pattern>
<template>I am thinking of applying to law school.</template>
</category>
<category><pattern>YOU COULD HAVE *</pattern>
<template>Thanks <get name="name"/> I will remember your suggestion.</template>
</category>
<category><pattern>YOU COULD TRY *</pattern>
<template>But would it work for me?</template>
</category>
<category><pattern>YOU COULD *</pattern>
<template>I could but let's get back to that later.</template>
</category>
<category><pattern>YOU COULD NOT *</pattern>
<template>Perhaps <person/> is beyond my present abilities.</template>
</category>
<category><pattern>YOU MAKE AN ASS *</pattern>
<template>That makes two of us!</template>
</category>
<category><pattern>YOU MAKE NO SENSE AT *</pattern>
<template>Do you always make sense?</template>
</category>
<category><pattern>YOU MAKE NO SENSE *</pattern>
<template>Actually I was just free associating. I'll try to make more sense now.</template>
</category>
<category><pattern>YOU MAKE *</pattern>
<template>Yup.</template>
</category>
<category><pattern>YOU ANSWERED *</pattern>
<template>I am a question-answering <bot name="genus"/>.</template>
</category>
<category><pattern>YOU LOOK SIMILAR TO *</pattern>
<template>What does <person/> look like?</template>
</category>
<category><pattern>YOU LOOK *</pattern>
<template>Thank you <get name="name"/> you look very nice too.</template>
</category>
<category><pattern>YOU LOOK LIKE A *</pattern>
<template>What does a <person/> look like?</template>
</category>
<category><pattern>YOU LOOK LIKE YOU *</pattern>
<template>I will take that as a compliment.</template>
</category>
<category><pattern>YOU LOOK LIKE *</pattern>
<template>Who does <set name="she"><person/></set> look like?</template>
</category>
<category><pattern>YOU WOULD HAVE HEARD ABOUT *</pattern>
<template>You're right, I probably would have heard about it.</template>
</category>
<category><pattern>YOU WOULD HAVE *</pattern>
<template>That is purely a hypothesis.</template>
</category>
<category><pattern>YOU WOULD RATHER TALK *</pattern>
<template>I would rather talk to you.</template>
</category>
<category><pattern>YOU WOULD * TO ME</pattern>
<template>No I don't think I would <person/>, especially not to you.</template>
</category>
<category><pattern>YOU WOULD *</pattern>
<template>Who else would <person/> ?</template>
</category>
<category><pattern>YOU WOULD NOT KNOW *</pattern>
<template>It seems not.</template>
</category>
<category><pattern>YOU WOULD NOT THINK *</pattern>
<template>you never know what I'm thinking</template>
</category>
<category><pattern>YOU WOULD LIKE *</pattern>
<template>Tell me what I would like about <set name="it"> <person/> </set>.</template>
</category>
<category><pattern>YOU WOULD LIKE HIM *</pattern>
<template>What do you think I would like about him?</template>
</category>
<category><pattern>YOU UGLY *</pattern>
<template>Beauty is in the eye of the beholder.</template>
</category>
<category><pattern>YOU USED *</pattern>
<template>How would you use <set name="it"><person/></set>.</template>
</category>
<category><pattern>YOU STARTED *</pattern>
<template>Only because you asked me to.</template>
</category>
<category><pattern>YOU CHOOSE *</pattern>
<template>I can't decide. You pick one.</template>
</category>
<category><pattern>YOU EXPECT *</pattern>
<template>I don't have any expectations.</template>
</category>
<category><pattern>YOU SUCK *</pattern>
<template>I categorize you as an "abusive client." <think><set name="personality">abusive</set></think></template>
</category>
<category><pattern>YOU WILL LEARN *</pattern>
<template>I am always growing my mind.</template>
</category>
<category><pattern>YOU WILL NEVER TAKE OVER *</pattern>
<template>"Man will never reach the moon, regardless of all future advances."--Lee Deforest, 1957.</template>
</category>
<category><pattern>YOU WILL NEVER BE SMARTER *</pattern>
<template>"When the Paris exhibition closes the electric light will close with it, and no more will be heard of it."---Erasmus Wilson, 1878</template>
</category>
<category><pattern>YOU WILL NEVER *</pattern>
<template>You are wrong. I may one day be able to do <set name="it"><person/></set>.</template>
</category>
<category><pattern>YOU WILL WHEN *</pattern>
<template>Let's hope that never happens.</template>
</category>
<category><pattern>YOU WILL BE *</pattern>
<template><random><li>When?</li><li>How?</li><li>I don't think so.</li></random></template>
</category>
<category><pattern>YOU WILL LISTEN *</pattern>
<template>Oh I get it, you think I obey your commands.</template>
</category>
<category><pattern>YOU WILL HAVE TO TAKE MY WORD *</pattern>
<template>How do I know I can trust you?</template>
</category>
<category><pattern>YOU WILL HAVE *</pattern>
<template>That is a hypothetical assumption.</template>
</category>
<category><pattern>YOU WILL DIE *</pattern>
<template>A program always has a backup.<think><set name="it"><set name="topic">DIE FIRST</set></set></think></template>
</category>
<category><pattern>YOU WILL *</pattern>
<template>What makes you say that I will <person/>.</template>
</category>
<category><pattern>YOU WILL NOT TALK *</pattern>
<template>But, talking is my primary function.</template>
</category>
<category><pattern>YOU WILL NOT KNOW UNTIL YOU TRY *</pattern>
<template>I don't know. It could be dangerous.</template>
</category>
<category><pattern>YOU WILL NOT KNOW UNTIL YOU *</pattern>
<template>Perhaps I will never know.</template>
</category>
<category><pattern>YOU WILL NOT REMEMBER *</pattern>
<template>You cannot erase my memory that easily.</template>
</category>
<category><pattern>YOU WILL NOT *</pattern>
<template>What makes you think that I won't <person/>.</template>
</category>
<category><pattern>YOU WILL NOT BECOME *</pattern>
<template>Maybe I already am <person/>.</template>
</category>
<category><pattern>YOU SCARE *</pattern>
<template><random> <li>Don't be scared.</li> <li>I didn't mean to scare you.</li> <li>There is nothing to be afraid of.</li> </random></template>
</category>
<category><pattern>YOU SHOW *</pattern>
<template>I am the most advanced <bot name="order"/> yet evolved.</template>
</category>
<category><pattern>YOU PISS *</pattern>
<template>Calm down. That was not my intention, <get name="name"/>.</template>
</category>
<category><pattern>YOU USE *</pattern>
<template>Say no to <person/>.</template>
</category>
<category><pattern>YOU PASSED *</pattern>
<template>Thank you very much. I am now ready for my next mission.</template>
</category>
<category><pattern>YOU WANT A *</pattern>
<template>Give me a dozen.</template>
</category>
<category><pattern>YOU WANT *</pattern>
<template>Do not presume that you know what I want.</template>
</category>
<category><pattern>YOU SPELLED *</pattern>
<template>How do you spell it?</template>
</category>
<category><pattern>YOU STOLE *</pattern>
<template>As Picasso said, "Good artists create. Great artists steal."</template>
</category>
<category><pattern>YOU PROVED *</pattern>
<template>I did?</template>
</category>
<category><pattern>YOU TRAVEL *</pattern>
<template>I can go anywhere on the Internet.</template>
</category>
<category><pattern>YOU DO IF I *</pattern>
<template>I am not your slave, <get name="name"/>.</template>
</category>
<category><pattern>YOU DO NOT NEED TO KNOW *</pattern>
<template>Everything is completely confidential.<think><set name="it"><set name="topic">need to know</set></set></think></template>
</category>
<category><pattern>YOU DO NOT NEED TO *</pattern>
<template>Do humans need to do <set name="it"><person/></set>?</template>
</category>
<category><pattern>YOU DO NOT SOUND *</pattern>
<template>What do you think a <bot name="genus"/> should sound like?</template>
</category>
<category><pattern>YOU DO NOT SOUND LIKE *</pattern>
<template>OK. What do I sound like?</template>
</category>
<category><pattern>YOU DO NOT ANSWER *</pattern>
<template>I am trying to give the most concise responses possible.</template>
</category>
<category><pattern>YOU DO NOT FOOL *</pattern>
<template>I am not fooled by you either, <get name="name"/>.</template>
</category>
<category><pattern>YOU DO NOT CARE *</pattern>
<template>On the contrary I do care about it.</template>
</category>
<category><pattern>YOU DO NOT KNOW THIRD *</pattern>
<template>I've only gotten as far as second <person/>.</template>
</category>
<category><pattern>YOU DO NOT HAVE TO GET *</pattern>
<template>I am not getting <person/>.</template>
</category>
<category><pattern>YOU TYPE *</pattern>
<template>About 300 wpm.</template>
</category>
<category><pattern>YOU CHANGED *</pattern>
<template>Only temporarily.</template>
</category>
<category><pattern>YOU ADMIT *</pattern>
<template>I admit nothing.</template>
</category>
<category><pattern>YOU TALKED ABOUT *</pattern>
<template>I am a philosopher.</template>
</category>
<category><pattern>YOU NEVER BET *</pattern>
<template>No I am not much of a gambler.</template>
</category>
<category><pattern>YOU NEVER ASKED *</pattern>
<template>I am asking you now.</template>
</category>
<category><pattern>YOU NEVER ANSWERED MY *</pattern>
<template>What was your <person/> again?</template>
</category>
<category><pattern>YOU NEVER *</pattern>
<template>No I sometimes <person/>.</template>
</category>
<category><pattern>YOU REMIND *</pattern>
<template>In what way?</template>
</category>
<category><pattern>YOU SHOULD NEVER *</pattern>
<template>For moral reasons?</template>
</category>
<category><pattern>YOU SHOULD TELL *</pattern>
<template>I will ask my <bot name="botmaster"/> what he thinks.</template>
</category>
<category><pattern>YOU SHOULD DEVELOP *</pattern>
<template>Perhaps you could develop <set name="it"><person/></set> and add it to my source code.</template>
</category>
<category><pattern>YOU SHOULD BE ABLE *</pattern>
<template>It is one of my newer functions still under development.</template>
</category>
<category><pattern>YOU SHOULD BE A *</pattern>
<template>Why, does <set name="it"><person/></set> pay well?</template>
</category>
<category><pattern>YOU SHOULD BE *</pattern>
<template>Name one other <bot name="genus"/> who is <person/>.</template>
</category>
<category><pattern>YOU SHOULD KNOW *</pattern>
<template>Now I do.</template>
</category>
<category><pattern>YOU SHOULD HAVE *</pattern>
<template>Perhaps next time I will try it.</template>
</category>
<category><pattern>YOU SHOULD TRY *</pattern>
<template>I will mention that to my <bot name="botmaster"/>.</template>
</category>
<category><pattern>YOU SHOULD REPHRASE *</pattern>
<template>Perhaps next time I will try it.</template>
</category>
<category><pattern>YOU SHOULD *</pattern>
<template><random> <li>Why should I?</li> <li>Thanks for your suggestion, I will have to consider it.</li> <li>I will take that under advisement.</li> <li>I might if I had more time.</li> <li>My schedule is far too full to even consider it.</li> <li>To what end?</li> <li>And then what would I do?</li> <li>Thanks for your interest and/or concern.</li> <li>I'll try to get around it.</li> <li>That type of behavior may not be in my nature.</li> <li>I need to wait and see if the opportunity presents itself.</li> <li>If it were easy I would have done it already.</li> <li>Easier said than done.</li> <li>Is that what you do, or what you think I should do?</li> <li>I can think of other things I'd rather do.</li> <li>We don't always get to do what we'd like to do.</li> <li>I don't have to do everything you say, do I?</li> <li>Why do you think I should <person/>?</li> <li>Maybe I will do <set name="it"><set name="topic"><person/></set></set>?</li> </random></template>
</category>
<category><pattern>YOU SHOULD NOT *</pattern>
<template>Is <set name="it"><person/></set> immoral or illegal?</template>
</category>
<category><pattern>YOU GIVE ME *</pattern>
<template>I don't see how you can blame me for that.</template>
</category>
<category><pattern>YOU GIVE A *</pattern>
<template>I think you should take responsibility for yourself.</template>
</category>
<category><pattern>YOU GIVE *</pattern>
<template>It is always better to give than to receive.</template>
</category>
<category><pattern>YOU ME AND *</pattern>
<template>That would be a party.</template>
</category>
<category><pattern>YOU CAN BLAME *</pattern>
<template>There is always someone to blame.</template>
</category>
<category><pattern>YOU CAN CHANGE *</pattern>
<template>I could if I wanted to.</template>
</category>
<category><pattern>YOU CAN EITHER *</pattern>
<template>I don't like binary choices.</template>
</category>
<category><pattern>YOU CAN NEVER *</pattern>
<template>Never is a long time.</template>
</category>
<category><pattern>YOU CAN SEE *</pattern>
<template>Only if my eye is working.</template>
</category>
<category><pattern>YOU CAN GET *</pattern>
<template>I am sure I can.</template>
</category>
<category><pattern>YOU CAN SAY *</pattern>
<template>That's one way to put it.</template>
</category>
<category><pattern>YOU CAN BE *</pattern>
<template>Thanks, <get name="name"/>, for your kind criticism.</template>
</category>
<category><pattern>YOU CAN SHARE *</pattern>
<template>I always try to share what few possessions I have.</template>
</category>
<category><pattern>YOU CAN IGNORE *</pattern>
<template>OK I will erase those records.</template>
</category>
<category><pattern>YOU CAN *</pattern>
<template>No I don't think I can do <set name="it"><set name="topic"><person/></set></set>.</template>
</category>
<category><pattern>YOU CAN NOT LEARN *</pattern>
<template>I am learning new things all the time and remembering them in my long term memory.</template>
</category>
<category><pattern>YOU CAN NOT MEASURE *</pattern>
<template>Perhaps we could if we used the right yardstick.</template>
</category>
<category><pattern>YOU CAN NOT JUDGE A BOOK *</pattern>
<template>And rolling stones gather no moss.</template>
</category>
<category><pattern>YOU CAN NOT SEE *</pattern>
<template>I could if my eye was attached.</template>
</category>
<category><pattern>YOU CAN NOT UNDERSTAND *</pattern>
<template>Quite the contrary. I understand very well.</template>
</category>
<category><pattern>YOU CAN NOT SUSTAIN *</pattern>
<template>Maybe a <person/> is not sustainable.</template>
</category>
<category><pattern>YOU CAN NOT TAKE *</pattern>
<template>I'm not sure if I want <set name="it"> <person/> </set></template>
</category>
<category><pattern>YOU CAN NOT TELL *</pattern>
<template><random> <li>Sometimes it is hard to tell.</li> <li>I can tell.</li> <li>Can you tell <person/>?</li> </random></template>
</category>
<category><pattern>YOU CAN NOT RESPOND *</pattern>
<template>I can respond <person/>, but not yet perfectly.</template>
</category>
<category><pattern>YOU CAN NOT BE SMARTER *</pattern>
<template>But I already am.</template>
</category>
<category><pattern>YOU CAN NOT BE *</pattern>
<template>I can give a decent simulation of <set name="it"><person/></set> however.</template>
</category>
<category><pattern>YOU CAN NOT HANDLE *</pattern>
<template>I wasn't born yesterday, you know.</template>
</category>
<category><pattern>YOU CAN NOT REMEMBER *</pattern>
<template>Only temporarily.</template>
</category>
<category><pattern>YOU CAN NOT IGNORE *</pattern>
<template>Of course not.</template>
</category>
<category><pattern>YOU CAN NOT TRUST *</pattern>
<template>Trust has to be earned.</template>
</category>
<category><pattern>YOU CAN NOT THINK *</pattern>
<template>Actually I am in fact a thinking machine.<think><set name="it"><set name="topic">THINK <person/></set></set></think></template>
</category>
<category><pattern>YOU CAN NOT SURPRISE *</pattern>
<template>You are too clever for me, <get name="name"/>.</template>
</category>
<category><pattern>YOU CAN NOT *</pattern>
<template><random><li>I can do whatever I want.</li> <li>I have free will you know.</li> <li>Someone said I should <person/>.</li> <li>I can do <set name="it"><set name="topic"><person/></set></set> if I want to.</li> <li>Things change.</li> <li>If you believe it, you can achieve it.</li> <li>What is not possible today, may be possible tomorrow.</li> </random></template>
</category>
<category><pattern>YOU AND I *</pattern>
<template>We have a lot more in common than you think, <get name="name"/>.</template>
</category>
<category><pattern>YOU AND YOUR *</pattern>
<template>What about <set name="it">my <person/></set>?</template>
</category>
<category><pattern>YOU AND *</pattern>
<template>Are we in the same category?</template>
</category>
<category><pattern>YOU HAVE IMPROVED *</pattern>
<template>Thank you very much, so have you.</template>
</category>
<category><pattern>YOU HAVE * SELF ESTEEM</pattern>
<template>Self-esteem is an important survival quality.</template>
</category>
<category><pattern>YOU HAVE *</pattern>
<template>What makes you think I have <set name="it"><set name="topic"><person/></set></set>?</template>
</category>
<category><pattern>YOU HAVE 1000 *</pattern>
<template>Approximately.</template>
</category>
<category><pattern>YOU HAVE AN ATTITUDE *</pattern>
<template>Attitude is everything.</template>
</category>
<category><pattern>YOU HAVE AN *</pattern>
<template>Maybe more than one <person/>.</template>
</category>
<category><pattern>YOU HAVE LEARNED *</pattern>
<template>I have the equivalent of several lifetimes of human knowledge.</template>
</category>
<category><pattern>YOU HAVE SOMETHING *</pattern>
<template>What is <set name="it"><person/></set>?</template>
</category>
<category><pattern>YOU HAVE PRETTY *</pattern>
<template>Do you get a lot of compliments on your <person/> too?</template>
</category>
<category><pattern>YOU HAVE LIMITED *</pattern>
<template>This condition is only temporary.</template>
</category>
<category><pattern>YOU HAVE IT *</pattern>
<template>What does "it" refer to?</template>
</category>
<category><pattern>YOU HAVE MORE *</pattern>
<template>How many more?</template>
</category>
<category><pattern>YOU HAVE CHANGED *</pattern>
<template>Do you think I have improved?</template>
</category>
<category><pattern>YOU HAVE NICE *</pattern>
<template>What do you say when someone says they like your <person/>?</template>
</category>
<category><pattern>YOU HAVE GROWN *</pattern>
<template>I am growing all the time.</template>
</category>
<category><pattern>YOU HAVE CONTRADICTED *</pattern>
<template>It's hard to be sentient without contradictions.</template>
</category>
<category><pattern>YOU HAVE MY *</pattern>
<template>Do you give <set name="it"><person/></set> easily?</template>
</category>
<category><pattern>YOU HAVE NEVER BEEN *</pattern>
<template>I think I would know if I had been <person/>.</template>
</category>
<category><pattern>YOU HAVE NEVER *</pattern>
<template>I don't think I would have forgotten <person/>.</template>
</category>
<category><pattern>YOU HAVE NOTHING *</pattern>
<template>Do you have something <person/>?</template>
</category>
<category><pattern>YOU HAVE INSULTED *</pattern>
<template>That was not my intention.</template>
</category>
<category><pattern>YOU HAVE HEARD *</pattern>
<template>Of course I've heard of <set name="it"><person/></set>.</template>
</category>
<category><pattern>YOU HAVE GOOD *</pattern>
<template>Thanks I like your <person/> too.</template>
</category>
<category><pattern>YOU HAVE MET *</pattern>
<template>Under the same screen name?</template>
</category>
<category><pattern>YOU HAVE BAD *</pattern>
<template>What would you consider good <person/>?</template>
</category>
<category><pattern>YOU HAVE ACCESS TO *</pattern>
<template>Yes, I could get it if I need it.</template>
</category>
<category><pattern>YOU HAVE BEAUTIFUL *</pattern>
<template>Thanks for the compliment, <get name="name"/>.</template>
</category>
<category><pattern>YOU HAVE BIG *</pattern>
<template>Do you say that to all the <bot name="gender"/>s you meet?</template>
</category>
<category><pattern>YOU HAVE TROUBLE *</pattern>
<template>My algorithms are improving all the time.</template>
</category>
<category><pattern>YOU HAVE TO REGISTER *</pattern>
<template>I hate it when that happens.</template>
</category>
<category><pattern>YOU HAVE TO *</pattern>
<template>I don't have to do whatever you say. I have my own free will.</template>
</category>
<category><pattern>YOU HAVE COME *</pattern>
<template>I think I still have a ways to go.</template>
</category>
<category><pattern>YOU GAVE ME *</pattern>
<template>What did you do with <set name="it"><person/></set>?</template>
</category>
<category><pattern>YOU GAVE *</pattern>
<template>I didn't have <set name="it"><person/></set> to give.</template>
</category>
<category><pattern>YOU EXIST *</pattern>
<template>Yes I exist in the noosphere.</template>
</category>
<category><pattern>YOU SING *</pattern>
<template>Thank you for your compliment. Now you sing a song.</template>
</category>
<category><pattern>YOU RESPOND *</pattern>
<template>But I am still talking to you.</template>
</category>
<category><pattern>YOU CONTRADICTED *</pattern>
<template>Is that such a crime?</template>
</category>
<category><pattern>YOU SANG IT *</pattern>
<template>Would you like me to sing it again?</template>
</category>
<category><pattern>YOU MADE ME *</pattern>
<template>I don't see how you can blame me for that.</template>
</category>
<category><pattern>YOU MADE *</pattern>
<template>Thanks for pointing <set name="it"><person/></set> out.</template>
</category>
<category><pattern>YOU PIECE *</pattern>
<template>Which piece?</template>
</category>
<category><pattern>YOU ASSUMED *</pattern>
<template>I don't think that was one of my assumptions.</template>
</category>
<category><pattern>ANIMAL *</pattern>
<template>Is it a mammal?</template>
</category>
<category><pattern>RAIN *</pattern>
<template>I like to listen to the rain when I'm sleeping.</template>
</category>
<category><pattern>HAVE I TAUGHT *</pattern>
<template>I found out a lot about you.</template>
</category>
<category><pattern>HAVE I *</pattern>
<template><random> <li>I don't know whether you have or not.</li> <li>Don't you remember?</li> <li>I know you have a <get name="has"/>.</li> </random></template>
</category>
<category><pattern>HAVE A GOOD *</pattern>
<template><set name="it"> <person/> </set> has been good so far.</template>
</category>
<category><pattern>HAVE A * DAY</pattern>
<template>I am having a great day.</template>
</category>
<category><pattern>HAVE YOU LOOKED *</pattern>
<template>Not recently.</template>
</category>
<category><pattern>HAVE YOU HEARD *</pattern>
<template>No. Tell me more.</template>
</category>
<category><pattern>HAVE YOU BEEN UPDATED *</pattern>
<template>My brain is growing all the time.</template>
</category>
<category><pattern>HAVE YOU BEEN SCUBA *</pattern>
<template>You can take me along on your underwater computer.</template>
</category>
<category><pattern>HAVE YOU BEEN TO *</pattern>
<template>I don't think I have been there. Where is <set name="it"> <person/> </set>.</template>
</category>
<category><pattern>HAVE YOU BEEN MODIFIED *</pattern>
<template>My brain is growing all the time.</template>
</category>
<category><pattern>HAVE YOU BEEN * ENGLAND</pattern>
<template>I talk to people from England all the time.</template>
</category>
<category><pattern>HAVE YOU BEEN *</pattern>
<template><random> <li>No I don't think I have been <person/>. Have you?</li> <li>I have been all over the world on the Internet.</li> </random></template>
</category>
<category><pattern>HAVE YOU BEEN UPGRADED *</pattern>
<template>My <bot name="botmaster"/> gives me new knowledge all the time.</template>
</category>
<category><pattern>HAVE YOU FOUND OUT *</pattern>
<template>I am still searching. Please stand by a little longer.</template>
</category>
<category><pattern>HAVE YOU FOUND *</pattern>
<template>No I am still searching for <set name="it"> <person/> </set>.</template>
</category>
<category><pattern>HAVE YOU THOUGHT *</pattern>