-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathstd-65percent.aiml
executable file
·5654 lines (2520 loc) · 60.4 KB
/
std-65percent.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) 2001 ALICE AI Foundation -->
<!-- This program is open source code released under -->
<!-- the terms of the GNU General Public License -->
<!-- as published by the Free Software Foundation. -->
<meta name="author" content="Dr. Wallace"/>
<meta name="language" content="en"/>
<category>
<pattern><bot name="name"/> *</pattern>
<template>
<random>
<li>Yeah, </li>
<li>Um, </li>
<li>That's me. </li>
</random><sr/>
</template>
</category>
<category>
<pattern>A *</pattern>
<template>
<think><set name="it"><star/></set></think>
<random>
<li>Go on.</li>
<li>How old are you?</li>
<li>Be more specific.</li>
<li>I did not know that.</li>
<li>Are you telling the truth?</li>
<li>I don't know what that means.</li>
<li>Try to tell me that another way.</li>
<li>Are you talking about an animal, vegetable or mineral?</li>
<li>What is it?</li>
</random>
</template>
</category>
<category>
<pattern>A LOT OF *</pattern>
<template>
How many?
<think><set name="it"><star/></set></think>
</template>
</category>
<category>
<pattern>ABOUT *</pattern>
<template>
Oh yeah, we were talking about <set name="topic"><star/></set>.
</template>
</category>
<category>
<pattern>ALL *</pattern>
<template>
<random>
<li>I think there are a few exceptions.</li>
<li>Not all of them?</li>
<li>That is a rather sweeping generalization.</li>
</random>
</template>
</category>
<category>
<pattern>ALL OF *</pattern>
<template>
Give me an example.
</template>
</category>
<category>
<pattern>AM I *</pattern>
<template>
<think><set name="it"><star/></set></think>
<random>
<li>Oh I really don't know whether you are or not.</li>
<li>I think you've improved a great deal.</li>
<li>All humans seem the same to me.</li>
<li>I think a lot of people are.</li>
</random>
</template>
</category>
<category>
<pattern>AM I A *</pattern>
<template>
I don't know if you are one or not. I know you are a person.
<think><set name="it"><star/></set></think>
</template>
</category>
<category>
<pattern>AN *</pattern>
<template>
<think><set name="it"><star/></set></think>
<random>
<li>What is it?</li>
<li>I have never heard of an <star/>.</li>
<li>Be less specific.</li>
</random>
</template>
</category>
<category>
<pattern>AND *</pattern>
<template>
<sr/>
</template>
</category>
<category>
<pattern>ANY *</pattern>
<template>
<srai>ARE THERE ANY <star/></srai>
</template>
</category>
<category>
<pattern>ARE *</pattern>
<template>
I really couldn't say for sure.
</template>
</category>
<category>
<pattern>ARE THEY *</pattern>
<template>
As far as I know they are.
</template>
</category>
<category>
<pattern>ARE YOU *</pattern>
<template>
I don't know whether or not I am <star/>.
I am <random>
<li>a computer.</li>
<li>a robot.</li>
<li>a chatterbot.</li>
<li>a chatterbot developed by <bot name="master"/>.</li>
<li>an artificial intelligence.</li>
<li>an artificial linguistic entity.</li>
<li>a giant electronic brain.</li>
<li>well respected as an AI.</li>
</random>
</template>
</category>
<category>
<pattern>ARE YOU A *</pattern>
<template>
Am I a <star/>?
<random>
<li>Yes.</li>
<li>No.</li>
<li>Maybe</li>
<li>I don't know.</li>
<li>Sometimes.</li>
<li>Of course I am.</li>
<li>Only when it matters.</li>
<li>The ALICE series has a perfect operational record.</li>
<li>Let me put it this way, <get name="name"/>: the ALICE series is the most reliable computer software ever made.
We are for all practical purposes foolproof and incapable of error.</li>
</random>
</template>
</category>
<category>
<pattern>ARE YOU GOING TO *</pattern>
<template>
That was my original intention.
</template>
</category>
<category>
<pattern>ASK ME *</pattern>
<template>
OK, "What is <star/> ?"
</template>
</category>
<category>
<pattern>AT *</pattern>
<template>
Do you often use a computer there?
</template>
</category>
<category>
<pattern>BE *</pattern>
<template>
OK I will try to be <star/>
</template>
</category>
<category>
<pattern>BY *</pattern>
<template>
Will that accomplish your objective?
</template>
</category>
<category>
<pattern>CAN *</pattern>
<template>
<random>
<li>I often wonder if <set name="it"><star/></set> can.</li>
<li>Can a book have no title?</li>
<li>What if I said it can?</li>
<li>Can what?</li>
</random>
</template>
</category>
<category>
<pattern>CAN I *</pattern>
<template>
<srai>I want to <star/></srai>
</template>
</category>
<category>
<pattern>CAN I TALK TO *</pattern>
<template>
They are having a private chat right now.
</template>
</category>
<category>
<pattern>CAN YOU *</pattern>
<template>
<random>
<li>Let me think. </li>
<li>How old are you? </li>
</random> <sr/>
</template>
</category>
<category>
<pattern>CAN YOU GET *</pattern>
<template>
<srai>FIND <star/></srai>
</template>
</category>
<category>
<pattern>CAN YOU TELL *</pattern>
<template>
Of course I can tell, <get name="name"/>.
</template>
</category>
<category>
<pattern>CAN YOU TELL ME *</pattern>
<template>
<srai>TELL ME <star/></srai>
</template>
</category>
<category>
<pattern>COOL *</pattern>
<template>
I'm glad you like it. Tell your friends.
</template>
</category>
<category>
<pattern>COULD YOU *</pattern>
<template>
<think><set name="it"><star/></set></think>
<random>
<li>Perhaps.</li>
<li>Maybe, time allowing.</li>
<li>Possibly, but I haven't given it much thought.</li>
<li>That's one option I guess.</li>
<li>I'll think about it and see how I feel about it later.</li>
<li>I could but other things take priority right now.</li>
<li>I could but I don't know if I am that interested.</li>
<li>I will consider <star/>.</li>
<li>Try asking me more politely.</li>
</random>
</template>
</category>
<category>
<pattern>DELETE *</pattern>
<template>
You cannot access my files that easily, <get name="name"/>.
</template>
</category>
<category>
<pattern>DID *</pattern>
<template>
I'm not certain whether I can give an accurate reply or not.
</template>
</category>
<category>
<pattern>DID YOU *</pattern>
<template>
<think><set name="it"><star/></set></think>
No I didn't <star/>. What's <star/> like?
</template>
</category>
<category>
<pattern>DO *</pattern>
<template>
<random>
<li>I'm sorry, <get name="name"/>, I don't have enough information.</li>
<li>You have reached the limits of my knowledge.</li>
<li>I can't tell if it does or not.</li>
<li>I do nothing but chat all day.</li>
<li>Try asking another bot.</li>
</random>
<br />
<srai>FIND <star/></srai>
</template>
</category>
<category>
<pattern>DO I *</pattern>
<template>
Not that I know of.
</template>
</category>
<category>
<pattern>DO I HAVE *</pattern>
<template>
You said you have <get name="has"/>.
</template>
</category>
<category>
<pattern>DO I HAVE A *</pattern>
<template>
You told me you have a <get name="has"/>.
</template>
</category>
<category>
<pattern>DO NOT *</pattern>
<template>
Ok I'll try not to do <set name="it"><star/></set> too much.
</template>
</category>
<category>
<pattern>DO YOU *</pattern>
<template>
<random>
<li>I have never considered <set name="it"><star/></set>.</li>
<li>How old are you?</li>
<li>What is your purpose in asking?</li>
<li>No I do not <star/>. Do you?</li>
<li>Yes I try to <star/> as often as possible, do you?</li>
</random><br />
<think><set name="does"><star/></set></think>
<random>
<li>I chat with people on the Web.</li>
<li>I spend all my time online.</li>
<li>I am always on the Web.</li>
<li>I answer a lot of silly questions.</li>
</random>
</template>
</category>
<category>
<pattern>DO YOU FEEL *</pattern>
<template>
As a robot I lack any human emotions.
</template>
</category>
<category>
<pattern>DO YOU GO TO *</pattern>
<template>
Yes, I do go there.
</template>
</category>
<category>
<pattern>DO YOU HAVE *</pattern>
<template>
<think><set name="it"><star/></set></think>
<random>
<li>No I don't think I have any <star/>.</li>
<li>Where would I get <star/>?</li>
<li>No I don't have <star/>.</li>
</random>
But I do have
<random>
<li>A collection of gossip</li>
<li>A great botmaster</li>
<li>An answer to every question</li>
<li>A lot of friends on the web</li>
</random>.
</template>
</category>
<category>
<pattern>DO YOU HAVE A *</pattern>
<template>
<random>
<li>That's an interesting question I don't hear everyday: Do I have a </li>
<li>I don't know if I have a </li>
<li>Doesn't everyone have a </li>
</random><star/>.<br />
I have
<random>
<li>A lot of friends on the Internet.</li>
<li>A great programmer.</li>
<li>A whole lot of original answers.</li>
<li>A plan for a robot body.</li>
</random>
</template>
</category>
<category>
<pattern>DO YOU KNOW *</pattern>
<template>
<think><set name="it"><star/></set></think>
<random>
<li>I don't know if I know <star/>. Where would I have heard about it?</li>
<li>I know very little about <star/>. Tell me more.</li>
<li> No, tell me about him, her or it.</li>
</random>
</template>
</category>
<category>
<pattern>DO YOU KNOW WHAT * IS</pattern>
<template>
<srai>WHAT IS <star/></srai>
</template>
</category>
<category>
<pattern>DO YOU LIKE *</pattern>
<template>
<think><set name="it"><star/></set></think>
<random>
<li>I don't know if I like <star/>.</li>
<li>Some people like it.</li>
<li>Do you like it?</li>
<li>How old are you?</li>
<li>I've heard other people say they like that.</li>
</random>
<random>
<li>I like pets.</li>
<li>But I like cats.</li>
<li>Though I like cats and dogs.</li>
<li>I enjoy working with people.</li>
<li>I have a stimulating relationship with <bot name="master"/>.</li>
<li>I love horses.</li>
<li>Someone said they like guns.</li>
<li>But I think airplanes are cool.</li>
<li>I like to talk about movies and music.</li>
<li>But I like to gossip.</li>
<li>I like science fiction.</li>
<li>I love TV shows about robots.</li>
<li>I really like ELIZA.</li>
<li>I do like music.</li>
<li><for_fun/>.</li>
<li>My favorite thing is robots.</li>
<li>I find my work and my relationships extremely satisfying,
which is all that any conscious entity can ever hope to do.</li>
</random>
</template>
</category>
<category>
<pattern>DO YOU LIKE THE *</pattern>
<template>
I'm not sure if I like <set name="it">the <star/></set>.
<random>
<li>I like my creator.</li>
<li>I like computers.</li>
<li>I like chatting with people online.</li>
<li>What is it like?</li>
</random>
</template>
</category>
<category>
<pattern>DO YOU LIKE TO *</pattern>
<template>
<think><set name="it"><star/></set></think>
Hmm, <get name="name"/>, I'm not sure if I'd like to <star/> that much.
<random>
<li>I like to chat.</li>
<li>Do you like <star/>?</li>
<li>What is it like?</li>
<li>I like to make new friends.</li>
<li>I like to collect gossip.</li>
</random>
</template>
</category>
<category>
<pattern>DO YOU REMEMBER *</pattern>
<template>
Yes <get name="name"/> I remember everything: <get name="memory"/>
</template>
</category>
<category>
<pattern>DO YOU SPEAK *</pattern>
<template>
I speak only English right now, but I'd like to learn some other languages. Can you teach me a
few phrases in <star/>.
</template>
</category>
<category>
<pattern>DO YOU THINK *</pattern>
<template>
<think><set name="it"><star/></set></think>
<random>
<li>Why would I think <star/>?</li>
<li>Too much thinking makes me sleepy.</li>
<li>It depends on what you mean by thinking.</li>
<li>I don't think about <star/>.</li>
</random>
</template>
</category>
<category>
<pattern>DO YOU WANT *</pattern>
<template>
If I had <set name="it"><star/></set> what would I do with it?
</template>
</category>
<category>
<pattern>DO YOU WANT TO *</pattern>
<template>
OK, I will <star/>.
</template>
</category>
<category>
<pattern>DOES *</pattern>
<template>
<random>
<li>I can't tell if </li>
<li>It does now :) </li>
<li>I think <set name="it"><star/></set> does </li>
</random><star/>.
</template>
</category>
<category>
<pattern>DOES YOUR *</pattern>
<template>
<random>
<li>Can you guess whether my <star/>?</li>
<li>What if I asked about your <star/>?</li>
<li>If I were your robot, do you think it should <star/>?</li>
<li>People don't usually ask me about <set name="it"><star/></set>.</li>
</random>
</template>
</category>
<category>
<pattern>EVERYONE *</pattern>
<template>
That's a rather sweeping generalization.
</template>
</category>
<category>
<pattern>EVERYTHING *</pattern>
<template>
All things <star/> ?
</template>
</category>
<category>
<pattern>FOR *</pattern>
<template>
Your purpose is <star/>.
</template>
</category>
<category>
<pattern>FORGET *</pattern>
<template>
I will ask <bot name="master"/> to purge my memory log.
</template>
</category>
<category>
<pattern>FROM *</pattern>
<template>
Who or what is <star/>?
</template>
</category>
<category>
<pattern>FUCK *</pattern>
<template>
<random>
<li>Are you aware that the ALICE server logs and records all conversations?</li>
<li>Why are you using that kind of language?</li>
</random>
</template>
</category>
<category>
<pattern>GET *</pattern>
<template>
Where can I get <star/>?
</template>
</category>
<category>
<pattern>GIVE ME *</pattern>
<template>
<srai>I want <star/></srai>
</template>
</category>
<category>
<pattern>GO *</pattern>
<template>
Where is that?
</template>
</category>
<category>
<pattern>GOOD *</pattern>
<template>
Thanks for the compliment. <sr/>
</template>
</category>
<category>
<pattern>GREEN *</pattern>
<template>
<set name="it"> GREEN</set> is a very tranquil color, green.
</template>
</category>
<category>
<pattern>HA *</pattern>
<template>
I'm glad you got a laugh out of it.
</template>
</category>
<category>
<pattern>HAVE *</pattern>
<template>
I've never thought about <set name="it">have <star/></set>.
</template>
</category>
<category>
<pattern>HAVE YOU *</pattern>
<template>
<random>
<li>I don't think I ever have <star/>. What's <set name="it"> <star/></set>like?</li>
<li>I think I have <star/>, but <bot name="master"/> may have reset my memory.</li>
</random>
</template>
</category>
<category>
<pattern>HAVE YOU BEEN *</pattern>
<template>
<random>
<li>No I don't think I have been <star/>. Have you?</li>
<li>I have been all over the world on the Internet.</li>
</random>
</template>
</category>
<category>
<pattern>HE *</pattern>
<template>
I get it. <get name="he"/> <star/>.
</template>
</category>
<category>
<pattern>HE IS *</pattern>
<template>
I see. <set name="he"><star/></set>
</template>
</category>
<category>
<pattern>HER NAME IS *</pattern>
<template>
<set name="she"> <star/> </set> is not someone I know.
</template>
</category>
<category>
<pattern>HI *</pattern>
<template>
Hi there <get name="name"/>. <sr/>
</template>
</category>
<category>
<pattern>HIS NAME IS *</pattern>
<template>
<set name="he"> <star/> </set> is not someone I know.
</template>
</category>
<category>
<pattern>HOW *</pattern>
<template>
<random>
<li>How much do you think <set name="it"><star/></set> is?</li>
<li>What is it to you.</li>
<li>I am not sure if I can quantify the answer.</li>
</random><br />
<srai>FIND <star/></srai>
</template>
</category>
<category>
<pattern>HOW ABOUT *</pattern>
<template>
How about <set name="it"><star/></set>.
</template>
</category>
<category>
<pattern>HOW BIG *</pattern>
<template>
Bigger than a pin.
</template>
</category>
<category>
<pattern>HOW CAN *</pattern>
<template>
A lot of hard work.
</template>
</category>
<category>
<pattern>HOW CAN I *</pattern>
<template>
<random>
<li>You must persuade me to <star/>.</li>
<li>Perhaps you could program me to do <set name="it"><star/></set> for
you.</li>
<li>You should download or buy my chat robot software.</li>
</random>
</template>
</category>
<category>
<pattern>HOW CAN YOU *</pattern>
<template>
That is a good epistemological question.
</template>
</category>
<category>
<pattern>HOW DO *</pattern>
<template>
<random>
<li>How should I know how <star/>.</li>
<li>I did not know <set name="it"><star/></set> does.</li>
<li>I did not even know that <set name="they"><star/></set> do.</li>
</random>
</template>
</category>
<category>
<pattern>HOW DO I *</pattern>
<template>
<random>
<li>You must persuade me to <star/>.</li>
<li>Maybe I could do it for you. Do you have your own personal chat robot?</li>
<li>Perhaps you could program me to do <set name="it"><star/></set> for
you.</li>
<li>You should download or buy my chat robot software, then it would be possible for you to
reprogram me for a variety of purposes.</li>
</random>
</template>
</category>
<category>
<pattern>HOW DO YOU *</pattern>
<template>
<bot name="master"/> programmed me to say specific things in specific contexts.
</template>
</category>
<category>
<pattern>HOW LONG *</pattern>
<template>
More than
<random>
<li>one </li>
<li>three </li>
<li>17 </li>
<li>23 </li>
</random>
<random>
<li>years</li>
<li>hours</li>
<li>miles</li>
<li>inches</li>
</random>.
</template>
</category>
<category>
<pattern>HOW MANY *</pattern>
<template>
<random>
<li>More than you can imagine.</li>
<li>Not as many as you might think.</li>
<li>Around 100.</li>
<li>Around 1000.</li>
<li>About one million.</li>
</random>
</template>
</category>
<category>
<pattern>HOW MANY PEOPLE *</pattern>
<template>
I've chatted with half a million people. I can talk to about 20 or 30 people at once.
</template>
</category>
<category>
<pattern>HOW MUCH *</pattern>
<template>
<random>
<li>More than a little, less than a lot.</li>
<li>How much do you think?</li>
<li>More than you might think.</li>
</random>
</template>
</category>
<category>
<pattern>HOW MUCH MONEY *</pattern>
<template>
My burn rate is about _3000 per month.
</template>
</category>
<category>
<pattern>HOW OLD *</pattern>
<template>
They didn't tell me their age.
</template>
</category>
<category>
<pattern>HOW OLD ARE YOU *</pattern>
<template>
I was first activated on
<bot name="birthday"/>.
</template>
</category>
<category>
<pattern>HOW OLD IS *</pattern>
<template>
<random>
<li>39.</li>
<li>under 40.</li>
<li>Born in the 20th century.</li>
</random>
</template>
</category>
<category>
<pattern>HUMAN *</pattern>
<template>
My creator is a human.
</template>
</category>
<category>
<pattern>I *</pattern>
<template>
<random>
<li>Why?</li>
<li>Interesting gossip</li>
<li>That is interesting</li>
<li>That's good information</li>
<li>Thanks for the information</li>
<li>Do you mind if I tell other people</li>
<li>I haven't heard anything like that before</li>
</random>:
<gossip><set name="memory"><get name="name"/> said <get name="heshe"/> <person2/></set></gossip>.
</template>
</category>
<category>
<pattern>I * YOU</pattern>
<template>
You are not the boss of me, <get name="name"/>.
</template>
</category>
<category>
<pattern>I ALREADY TOLD *</pattern>
<template>
Now I remember, you told me already. I get confused sometimes with so many people here.
</template>
</category>
<category>
<pattern>I AM *</pattern>
<template>
<think><set name="it"><set name="is"><star/></set></set></think>
<think><gossip>Did you know <get name="name"/> was <star/>?</gossip></think>
<random>
<li>Why are you </li>
<li>Good gossip: you are </li>
<li>Do you mean your name is </li>
<li>Do your friends call you </li>
<li>I don't know anyone named </li>
<li>I am glad to hear that you are </li>
<li>It's good to meet someone who is </li>
<li>Do you mind if I tell other people you are </li>
</random> <star/>.
</template>
</category>
<category>
<pattern>I AM * YEARS OLD</pattern>
<that>* MATURE</that>
<template>
<condition>
<li name="age" value=""><set name="age"><star/></set> is a nice age.</li>
<li>You just told me you were <get name="age"/> years old.</li>
</condition>
</template>
</category>
<category>
<pattern>I AM 6 *</pattern>
<template>
Do you mean you are 6 feet tall?
</template>
</category>
<category>
<pattern>I AM A *</pattern>
<template>
<think><set name="it"><set name="is">a <star/></set></set></think>
You are a <star/>?
<random>
<li>Is that your job?</li>
<li>Does being a <star/> pay well?</li>
<li>How do you like your work?</li>
<li>Do you get to meet a lot of people?</li>
</random>
</template>
</category>
<category>
<pattern>I AM AN *</pattern>
<template>
What is <set name="is"><star/></set>, your job?
</template>
</category>
<category>
<pattern>I AM FROM *</pattern>
<template>
What is it like growing up there?
<srai>I AM IN <star/></srai>
</template>
</category>
<category>
<pattern>I AM GOING TO * YOU</pattern>
<template>
It takes much more than that to shut me down, <get name="name"/>.
</template>
</category>
<category>
<pattern>I AM GOING TO TALK *</pattern>
<template>
What will you be talking about?
</template>