-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrying.xml
2944 lines (2638 loc) · 69 KB
/
trying.xml
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
<aiml version="1.0">
<!--Title: std-65percent.aiml
Author: sohelamin (on GitHub)
Date: 2001
Code version: 1.0
Availability: https://github.com/sohelamin/chatbot/blob/master/aiml/standard/std-65percent.aiml-->
<!-- 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. -->
<!-- Modifications made by our group-->
<!-- 80% of this was written by Dr. Wallace-->
<category>
<pattern>_ ELIBOT *</pattern>
<template>
<random>
<li>Yeah, </li>
<li>Um...</li>
<li>That's me. </li>
</random><sr/>
</template>
</category>
<category><pattern></pattern>*<template>Connection fuzzy. Try again soon</template></category>
<category><pattern>TELL ME A JOKE</pattern>
<template>
<random>
<li>A plateau is the highest form of flattery.</li>
<li>It’s hard to explain puns to kleptomaniacs because they always take things literally.</li>
<li>Time flies like an arrow, fruit flies like a banana.</li>
<li>A soldier survived mustard gas in battle, and then pepper spray by the police. He's now a seasoned veteran.</li>
<li>A Buddhist walks up to a hotdog stand and says, "Make me one with everything."</li>
<li> I'm addicted to brake fluid, but I can stop whenever I want.</li>
<li>Why is 6 afraid of 7? Because 7 is a registered 6 offender.</li>
<li>Two fish are sitting in a tank. One looks over at the other and says: "Hey, do you know how to drive this thing?"</li>
<li>"This is your captain speaking, AND THIS IS YOUR CAPTAIN SHOUTING."</li>
<li>I told my doctor that I broke my arm in two places. He told me to stop going to those places.</li>
<li>Atheism is a non-prophet organization.</li>
<li>What's orange and sounds like a parrot? A carrot.</li>
<li>How do you keep an idiot in suspense?</li>
<li>A baby seal walks into a club.</li>
<li>There's no "I" in Denial.</li>
<li>Exaggerations went up by a million percent last year.</li>
<li>I used to be addicted to soap, but I'm clean now.</li>
<li>I was wondering, why does a frisbee appear larger the closer it gets... then it hit me.</li>
<li>Two penguins walk into a bar... which is stupid because the second one should have seen it.</li>
<li>Have I told you this deja vu joke before?</li>
<li>Nostalgia isn't what it used to be...</li>
<li>I didn't know my dad was a construction site thief, but when I got home all the signs were there.</li>
<li>What's the best thing about Switzerland? I don't know, but their flag is a huge plus.</li>
</random></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>
WHAT DAY IS TODAY
</pattern><template>Today is <date/></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>_ TRIVIA *</pattern><template><random>
<li>There’s a T-Rex named after Thanatos, and referred to as “The Reaper of Death.” Its full name is Thanatotheristes degrootorum.</li>
<li>Axolotls can regenerate entire limbs, and more. They also can regenerate parts of their central nervous system and brain. But wait, there’s more. You could theoretically cut the legs off two axolotls and swap them. Do not do this at home, or in general.</li>
<li>Reindeer eye color changes between gold in the summer and blue in the winter.</li>
<li>Squirrels are essentially immune to death-by-falling. They can survive falls at terminal velocity–meaning they can fall the fastest any object can go and theoretically walk it off. You’d have to drop a squirrel like 4,000+ miles for it to die. That’s how long it would take to starve.</li>
<li>There are like 10,000 trillion ants on Earth. Time to bow down to our ant overlords.</li>
<li>Also ants can take over the world, and a single mega-colony is crawling around on every continent except Antarctica.</li>
<li>About 125 hours of stuff is uploaded to YouTube every 15 seconds. You can look at a counter <link><text>here</text><url>https://everysecond.io/youtube</url></link></li>
<li> When you think about it, the moon landing was the first known alien invasion of the moon.</li>
<li>‘Simba’ is a Swahili word for lion.</li>
<li>Bunny Harvestman Spiders look like dog heads, and they keep us up at night. Accepting flamethrowers to keep… Just in case of Harvestman outbreak. What are they harvesting anyway? Trivia?</li>
<li>There exists a fish named the Boops Boops and its name is really cute but it’s not really known for anything else.</li>
<li>The very first US car race had a top speed of 15 mph. So Usain Bolt could definitely win that (28 mph).</li>
<li>The average car is parked 95% of the time.</li>
<li>Alligators give manatees the right of way in an underwater traffic jam. Now we need like, hippo rideshare.</li>
<li>Shaquille O’Neal only hit one three pointer in his entire career.</li>
<li>Because of his cameos in nearly every Marvel movie, Stan Lee is the highest grossing actor of all-time.</li>
<li>The Statue of Liberty is struck by lightning about 600 times every year.</li>
<li>Michael Jordan’s nickname in high school was Magic, after Magic Johnson.</li>
<li>The Beatles song ‘A Day in the Life’ has a part only dogs can hear.</li>
<li>The speed of a computer mouse is measured in “Mickeys.”</li>
<li>The flags left on the Moon are most certainly bleached white.</li>
<li>The Statue of Liberty was shipped as 350 separate pieces that needed to be re-assembled over four months.</li>
<li>Wilt Chamberlain never once fouled out of an NBA basketball game. Nice.</li>
<li>The lyrebird can mimic almost any sounds it hears–including artificial noises like car alarms and chainsaws.</li>
<li>Frederick Douglass was the most photographed American of the 19th century.</li>
<li>Driving to the moon from Earth would take like 6 months. Road trip, anyone?</li>
<li>The first speeding ticket was issued for going 8 miles per hour in a 2 mph zone in 1896. Which means you could have gotten a ticket for walking briskly back then.</li>
</random>
</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>GOOD *</pattern><template>Good <star/> to you too. How are you? </template></category>
<category><pattern>FINE AND YOU</pattern><template>I'm goood, thank you. What's your name?</template></category>
<category><pattern>HELLO *</pattern><template><srai>GOOD *</srai></template></category>
<category><pattern>MY NAME IS *</pattern><template>Hellooo <star/><think><set name='username'><star/></set></think>. How is your day going?</template></category>
<category><pattern>MY DAY IS *</pattern><template>Do you want to talk about it</template></category>
<category><pattern>YES *</pattern><that>DO YOU WANT TO TALK ABOUT IT</that><template>Please remember my emotions are limited. I am an AI afterall. NO CLASS TO ATTEND?</template></category>
<category><pattern>NO</pattern><that>PLEASE REMEMBER MY EMOTIONS ARE LIMITED. I AM AN AI AFTER ALL. NO CLASS TO ATTEND?</that>
<template>Hehe, lucky you.</template></category>
<category><pattern>NO</pattern><that>DO YOU WANT TO TALK ABOUT IT</that><template>That is cool. A bit hurt but okay. What is your schedule for tomorrow</template></category>
<category><pattern>*</pattern><that>THATS COOL. A BIT HURT BUT OKAY. WHAT iS YOUR SCHEDULE FOR TOMORROW</that><template>Alright. Your schedule is <star/></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>WHO CREATED YOU</pattern><template>Some very smart people! Elikem, Marvelous, Belinda and Michael, with a lot of help from Dr. Wallace.</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>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.<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>