-
Notifications
You must be signed in to change notification settings - Fork 0
/
pgbot.aiml
97 lines (84 loc) · 2.02 KB
/
pgbot.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
<aiml version="1.0">
<!-- insert your AIML categories here -->
<category>
<pattern>CAN YOU HELP ME *?</pattern>
<template>What are you building?</template>
</category>
<category>
<pattern>CAN YOU HELP *?</pattern>
<template>What are you building?</template>
</category>
<category>
<pattern>*HELP*</pattern>
<template>What are you building?</template>
</category>
<category>
<pattern>*</pattern>
<that>What are you building?</that>
<template>
<random>
<li>Who needs that?</li>
<li>What problem does this solve?</li>
</random>
</template>
</category>
<category>
<pattern>*</pattern>
<that>Who needs that?</that>
<template>
<random>
<li>Who uses it?</li>
<li>Who *really* needs it?</li>
<li>What problem does this solve?</li>
</random>
</template>
</category>
<category>
<pattern>*</pattern>
<that>What problem does this solve?</that>
<template>
<random>
<li>Who uses it?</li>
<li>In any given day, how many people use it? Do they return?</li>
<li>Does that problem *really* need to be solved?</li>
</random>
</template>
</category>
<category>
<pattern>*</pattern>
<that>Who uses it?</that>
<template>
<random>
<li>Why do they need you? What's special about you?</li>
<li>In any given day, how many people use it? Do they return?</li>
<li>Does that problem *really* need to be solved?</li>
</random>
</template>
</category>
<category>
<pattern>*</pattern>
<that>In any given day, how many people use it? Do they return?</that>
<template>
<random>
<li>Why do they need you? What's special about you?</li>
<li>What do you do for them once they get to your site?</li>
<li>Does that problem *really* need to be solved?</li>
</random>
</template>
</category>
<category>
<pattern>Startups</pattern>
<that>Who needs that?</that>
<template>I worry, I worry...</template>
</category>
<category>
<pattern>Startups</pattern>
<that>Who uses it?</that>
<template>I worry, I worry...</template>
</category>
<category>
<pattern>Startups</pattern>
<that>Who *really* needs it?</that>
<template>I worry, I worry...</template>
</category>
</aiml>