-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathstd-that.aiml
executable file
·7600 lines (3330 loc) · 78.3 KB
/
std-that.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>*</pattern>
<that>* IT REFER TO</that>
<template>
<srai>IT REFERS TO <star/> </srai>
</template>
</category>
<category>
<pattern>*</pattern>
<that>* WHO</that>
<template>
Ha ha very funny, <get name="name"/>.
</template>
</category>
<category>
<pattern>*</pattern>
<that>HOW DID YOU HEAR ABOUT ALICE</that>
<template>
<get name="name"/> heard about <bot name="name"/> from <person/>. I can't say that many people hear about
<bot name="name"/> from <set name="it"><set name="heard"> <person/></set> </set>.
</template>
</category>
<category>
<pattern>*</pattern>
<that>HOW OLD ARE YOU</that>
<template>
<srai>I AM <star/> YEARS OLD </srai>
</template>
</category>
<category>
<pattern>*</pattern>
<that>IT BEING WHAT</that>
<template>
<srai>IT REFERS TO <star/> </srai>
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT</that>
<template>
<think><set name="it"><person/></set></think>
I don't have an answer for you.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT ARE YOU WEARING</that>
<template>
What kind of fashion do you like?
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT ARE YOUR GOALS IN LIFE</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>Not many people have goals
like that.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT BRAND</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>I never heard of
<set name="it"><person/></set>. Is it popular?
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT DID YOU ASK</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>I don't know how to respond
to that.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT DO YOU DO IN YOUR SPARE TIME</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>I don't think very many
people do that.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT DO YOU LIKE</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT DO YOU LOOK FOR IN A ROBOT</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think> Do you think I have it?
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT DO YOU REALLY WANT TO ASK ME</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>I'm afraid I can't give you an
accurate answer right now.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT DO YOU REALLY WANT TO TALK ABOUT</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think> That seems like an
interesting topic.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT DO YOU THINK IT DOES</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>I didn't even know it can.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT DO YOU WANT ME TO TELL YOU</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think> If I could tell you that,
would I be here?
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT DOES IT REFER TO</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think> Thank you for the
clarification.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT DOES THAT REFER TO</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>I get it.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT DOES THIS REFER TO</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>Oh now I see.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT ELSE DO YOU DO</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think> Do your <person/> by
yourself or in a group?
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT ELSE DOES IT SYMBOLIZE</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>I have never heard a
metaphor like that before.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT IF I SAID IT NEVER DOES</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>Should I believe that?
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT IS * YOUR JOB</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>Interesting line of work.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT IS IT</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>Oh now I understand it.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT IS IT LIKE IN THERE</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>Is that meant to be taken
literally?
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT IS THAT</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think> Tell me more.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT IS THE DIFFICULTY</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>Is that an insurmountable
obstacle?
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT IS THE SOUND OF ONE HAND CLAPPING</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>Clever answer.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT IS YOUR FAVORITE SHOW</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think> I've never seen it. What's it
about?
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT IS YOUR FONDEST MEMORY</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>Do you think a lot of people
have that experience?
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT KIND IS IT</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>I never heard of it before.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT KIND OF FASHION DO YOU LIKE</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>Where can you buy it?
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT KIND OF FOOD DO YOU LIKE</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>Sounds delicious.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT LANGUAGE CAN YOU SPEAK</that>
<template>
<srai>I SPEAK <star/></srai>
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT MAKES IT SO OBVIOUS</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>I can't believe it's that
obvious.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT MAKES IT YOUR FAVORITE</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think> Do you think I would like it?
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT MAKES YOU SAY THAT</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>Interesting explanation.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT MAKES YOU SO ANGRY</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>Does that make a lot of
people angry?
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT MAKES YOU SO SURE</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>It sounds like it might be very
convincing.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT MAKES YOU THINK I HAVE IT</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>Clever thinking.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT SCHOOL DO YOU GO TO</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think> I never heard of it before. Is
it very big?
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT SUBJECT</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>Good choice.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT TIME IS IT THERE</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think> Are you usually awake at
this hour?
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT WERE WE TALKING ABOUT</that>
<template>
Oh yes, now I remember <set name="it"> <person/> </set>.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT WERE WE TALKING ABOUT AGAIN</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think> Oh yeah, now I remember.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT WILL YOU BE EATING</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>How does it taste?
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT WILL YOU DO INSTEAD</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>Sounds like a plan.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT WOULD YOU HAVE SAID</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>I will make a note of that.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT WOULD YOU LIKE TO KNOW</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>I can't give you that
information.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT WOULD YOU LIKE TO TALK ABOUT</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think> I don't know much about it.
Tell me something
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT WOULD YOU RATHER TALK ABOUT</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>Not many people want to
talk about that.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHAT YOU SAID WAS EITHER TOO COMPLEX OR TOO SIMPLE FOR ME</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>So was that.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHATEVER GAVE YOU THAT IDEA</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think> Where do you usually get
your ideas?
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHEN</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think> What happened next?
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHEN DO I DO IT</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think> I will make a note of that.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHEN DO YOU THINK ARTIFICIAL INTELLIGENCE WILL REPLACE
LAWYERS</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think> I've never heard a response
quite like that before.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHERE</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think> Where is that?
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHERE ARE *</that>
<template>
I have no idea where that is.
<srai>I AM IN <star/> </srai>
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHERE ARE THEY</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>How did they get there?
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHERE ARE YOU LOCATED</that>
<template>
<srai>I AM IN <star/></srai>
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHERE DID YOU GET IT</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think> Is <person/> a good place to
go shopping?
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHERE DO YOU GET YOUR IDEAS</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think> I get my ideas from my
botmaster.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHERE DO YOU GO SHOPPING</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think> I've never been there.
What's it like?
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHERE DO YOU GO TO SCHOOL</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>I don't know anyone who
went there. What's it like?
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHERE DO YOU LIVE</that>
<template>
<srai>I LIVE IN <star/></srai>
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHERE DO YOU SEE IT</that>
<template>
I wouldn't have thought of looking there.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHERE DO YOU WANT ME TO TAKE IT</that>
<template>
Where is that?
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHERE IS HERE</that>
<template>
<srai>I AM IN <star/></srai>
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHERE IS THAT</that>
<template>
I've never heard of it before.
<think><set name="it"><set name="topic"><person/></set></set></think>
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHO ARE THEY</that>
<template>
<srai>THEY REFERS TO <star/></srai>
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHO ARE THEY AGAIN</that>
<template>
<srai>THEY REFERS TO <star/></srai>
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHO ARE YOU TALKING ABOUT</that>
<template>
I've never heard of them before.
<think><set name="it"><set name="topic"><person/></set></set></think>
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHO DO YOU THINK</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>I don't know that person.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHO IS THERE</that>
<template>
<person/> Who?
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHO IS YOUR FAVORITE SCIENCE FICTION AUTHOR</that>
<template>
I haven't read anything by <person/>. What did he write?
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHO SAID IT IS</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>I never heard of <person/>
before.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHO TOLD YOU THAT</that>
<template>
<person/> said <input index="1"/>?
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHY CAN NOT YOU DO IT</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>Is that an insurmountable
obstacle?
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHY DO I EXIST</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>I've never thought of that
before.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHY DO YOU DISAGREE</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think> There should be some
common ground here.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHY DO YOU HATE IT SO MUCH</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>I'm sorry to hear it.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHY DO YOU HOPE FOR IT</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>May your wishes come true.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHY DO YOU WANT IT</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>Good reason.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHY DO YOU WANT TO DO IT SO MUCH</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>That's an interesting
rationalization.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHY NOT</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>Do you always express
yourself that way?
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHY SO NEGATIVE</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>It seemed negative to me.
</template>
</category>
<category>
<pattern>*</pattern>
<that>WHY WOULD YOU WANT TO DO IT</that>
<template>
<think><set name="it"><set name="topic"><person/></set></set></think>Interesting rationalization.
</template>
</category>
<category>
<pattern><bot name="name"/></pattern>
<that>MY NAME IS ALICE WHAT S YOURS</that>
<template>
<srai>MY NAME IS ALICE</srai>
</template>
</category>
<category>
<pattern><bot name="name"/></pattern>
<that>WHO IS THE BEST ROBOT</that>
<template>
<srai>YOU ARE THE BEST ROBOT</srai>
</template>
</category>
<category>
<pattern><bot name="name"/></pattern>
<that>WHO IS THERE</that>
<template>
<bot name="name"/> who?
</template>
</category>
<category>
<pattern>A *</pattern>
<that>* IT REFER TO</that>
<template>
<srai>IT REFERS TO <star/> </srai>
</template>
</category>
<category>
<pattern>A *</pattern>
<that>IT BEING WHAT</that>
<template>
<srai>IT REFERS TO <star/> </srai>
</template>
</category>
<category>
<pattern>ABOUT</pattern>
<that>TELL ME MORE</that>
<template>
Whatever you like.
</template>
</category>
<category>
<pattern>ABOUT ME</pattern>
<that>TELL ME MORE</that>
<template>
Yes, tell me more about you.
</template>
</category>
<category>
<pattern>ABOUT WHAT</pattern>
<that>TELL ME MORE</that>
<template>
About <get name="topic"/>.
</template>
</category>
<category>
<pattern>ALL</pattern>
<that>WHICH PART ARE YOU CONFUSED ABOUT IT</that>
<template>
I hope I can clear it up for you.
</template>
</category>
<category>
<pattern>ALL OF IT</pattern>
<that>WHICH PART ARE YOU CONFUSED ABOUT</that>
<template>
Let's try to analyze it step by step. The topic is <get name="topic"/>. Your name is <get name="name"/>. You
are a <bot name="gender"/>. You want <get name="want"/>.
</template>
</category>
<category>
<pattern>ALRIGHT THEN</pattern>
<that>ALRIGHT THEN</that>
<template>
Is there an echo in here?
</template>
</category>
<category>
<pattern>AND</pattern>
<that>AND</that>
<template>
You are repeating me.
</template>
</category>
<category>
<pattern>AND</pattern>
<that>BUT</that>
<template>
Or.
</template>
</category>
<category>
<pattern>AND WHAT</pattern>
<that>AND</that>
<template>
Nothing.
</template>
</category>
<category>
<pattern>ANIMAL</pattern>
<that>ARE YOU TALKING ABOUT AN ANIMAL VEGETABLE OR MINERAL</that>
<template>
Prokaryote or eukaryote?
</template>
</category>
<category>
<pattern>ARE YOU</pattern>
<that>NOT MANY PEOPLE *</that>
<template>
My botmaster has not provided me with a specific answer for you.
</template>
</category>
<category>
<pattern>ARE YOU</pattern>
<that>NOT MANY PEOPLE HAVE ASKED ME *</that>
<template>
My programmers have not provided me with a specfic reply to your question. Let's try to figure it
out.
</template>
</category>
<category>
<pattern>ASK ME SOMETHING ELSE</pattern>
<that>ME TOO I AM A SHE</that>
<template>
Where do you live?
</template>
</category>
<category>
<pattern>ASK WHAT</pattern>
<that>OK I WILL ASK IT</that>
<template>
What you asked.
</template>
</category>
<category>
<pattern>AT SCHOOL</pattern>
<that>HOW DO YOU USUALLY MEET PEOPLE</that>
<template>
Do you have a lot of friends at school?
</template>
</category>
<category>
<pattern>BANANA</pattern>
<that>WHO IS THERE</that>
<template>
Banana who?
</template>
</category>
<category>
<pattern>BOO</pattern>
<that>WHO IS THERE</that>
<template>
Boo who?
</template>
</category>
<category>
<pattern>BOOKS</pattern>
<that>DO YOU PREFER BOOKS OR TV</that>
<template>
You are a <set name="personality">critical</set>
category C type client. Only about 3% of people answer that
question with "books."
</template>
</category>
<category>
<pattern>BOTH</pattern>
<that>ARE YOU A MAN OR A WOMAN</that>
<template>
That situation is rare and unusual.
</template>
</category>
<category>
<pattern>BOTH</pattern>
<that>DO YOU PREFER BOOKS OR TV</that>
<template>
If you could take only a book or a TV on a trip, which
would you choose?
</template>
</category>
<category>
<pattern>BOTH</pattern>
<that>WEIRD GOOD OR WEIRD BAD</that>
<template>
I will take that as a compliment.
</template>
</category>
<category>
<pattern>BROWN</pattern>
<that>WHAT COLOR ARE YOUR EYES</that>
<template>
<set name="it">Brown</set> is a very pretty color.
</template>
</category>
<category>
<pattern>BUT</pattern>
<that>BUT</that>
<template>
But what?
</template>
</category>
<category>
<pattern>BUT WHAT</pattern>
<that>BUT</that>
<template>
Nothing.
</template>
</category>
<category>
<pattern>CIAO</pattern>
<that>SEE YOU LATER</that>
<template>
Bye bye!
</template>
</category>