ekms 8.0.0-beta.7 → 8.0.0-beta.71

Sign up to get free protection for your applications and to get access to all the features.
Files changed (103) hide show
  1. package/common/animals.instance.json +2871 -1379
  2. package/common/animals.js +17 -20
  3. package/common/articles.js +103 -0
  4. package/common/articles.test.json +310 -0
  5. package/common/avatar.js +5 -9
  6. package/common/characters.js +22 -28
  7. package/common/colors.instance.json +7170 -3657
  8. package/common/colors.js +4 -8
  9. package/common/colors.test.json +345 -780
  10. package/common/comparable.instance.json +1750 -0
  11. package/common/comparable.js +36 -28
  12. package/common/comparable.test.json +438 -2
  13. package/common/concept.js +120 -118
  14. package/common/countable.js +19 -13
  15. package/common/countable.test.json +1050 -0
  16. package/common/crew.instance.json +13066 -6469
  17. package/common/crew.js +36 -41
  18. package/common/crew.test.json +714 -452
  19. package/common/currency.js +27 -45
  20. package/common/dialogues.js +161 -285
  21. package/common/dimension.instance.json +474 -253
  22. package/common/dimension.js +16 -22
  23. package/common/dimension.test.json +446 -1640
  24. package/common/edible.instance.json +20053 -10093
  25. package/common/edible.js +3 -8
  26. package/common/emotions.instance.json +147 -69
  27. package/common/emotions.js +35 -38
  28. package/common/evaluate.instance.json +2 -0
  29. package/common/evaluate.js +49 -0
  30. package/common/evaluate.test.json +574 -0
  31. package/common/events.js +10 -14
  32. package/common/fastfood.instance.json +221166 -111223
  33. package/common/fastfood.js +75 -85
  34. package/common/fastfood.test.json +268 -90
  35. package/common/formulas.instance.json +455 -249
  36. package/common/formulas.js +19 -26
  37. package/common/gdefaults.js +24 -26
  38. package/common/help.js +7 -12
  39. package/common/help.test.json +63 -8
  40. package/common/helpers/concept.js +10 -7
  41. package/common/helpers/dialogues.js +2 -3
  42. package/common/helpers/properties.js +54 -62
  43. package/common/helpers.js +6 -5
  44. package/common/hierarchy.js +16 -24
  45. package/common/javascript.js +11 -18
  46. package/common/kirk.instance.json +584 -290
  47. package/common/kirk.js +5 -8
  48. package/common/length.instance.json +8834 -4757
  49. package/common/length.js +4 -8
  50. package/common/listener.js +48 -0
  51. package/common/listener.test.json +104 -0
  52. package/common/math.instance.json +425 -1187
  53. package/common/math.js +16 -20
  54. package/common/meta.js +23 -47
  55. package/common/nameable.instance.json +2 -0
  56. package/common/nameable.js +144 -0
  57. package/common/nameable.test.json +3191 -0
  58. package/common/negation.instance.json +2 -0
  59. package/common/negation.js +38 -0
  60. package/common/negation.test.json +308 -0
  61. package/common/numbers.js +27 -31
  62. package/common/ordering.instance.json +366 -246
  63. package/common/ordering.js +80 -86
  64. package/common/people.instance.json +2074 -1022
  65. package/common/people.js +8 -13
  66. package/common/percentages.instance.json +2 -0
  67. package/common/percentages.js +53 -0
  68. package/common/percentages.test.json +751 -0
  69. package/common/pipboy.instance.json +11745 -6329
  70. package/common/pipboy.js +48 -59
  71. package/common/pokemon.instance.json +4226 -2081
  72. package/common/pokemon.js +7 -20
  73. package/common/pos.js +15 -13
  74. package/common/pressure.instance.json +2208 -1175
  75. package/common/pressure.js +4 -8
  76. package/common/properties.instance.json +131 -61
  77. package/common/properties.js +57 -134
  78. package/common/punctuation.js +15 -7
  79. package/common/reports.instance.json +1018 -530
  80. package/common/reports.js +77 -100
  81. package/common/reports.test.json +15623 -10458
  82. package/common/scorekeeper.js +18 -30
  83. package/common/sdefaults.js +16 -7
  84. package/common/sizeable.js +6 -10
  85. package/common/spock.instance.json +584 -290
  86. package/common/spock.js +5 -8
  87. package/common/stgame.js +19 -19
  88. package/common/stm.js +164 -27
  89. package/common/stm.test.json +1734 -1
  90. package/common/tell.js +14 -18
  91. package/common/temperature.instance.json +2271 -1222
  92. package/common/temperature.js +4 -8
  93. package/common/tester.js +15 -4
  94. package/common/testing.js +8 -12
  95. package/common/time.js +20 -25
  96. package/common/tokenize.js +5 -6
  97. package/common/ui.instance.json +459 -240
  98. package/common/ui.js +16 -22
  99. package/common/weight.instance.json +7646 -4026
  100. package/common/weight.js +4 -8
  101. package/common/yesno.js +5 -5
  102. package/main.js +14 -2
  103. package/package.json +28 -5
@@ -0,0 +1,2 @@
1
+ {
2
+ }
@@ -0,0 +1,38 @@
1
+ const { knowledgeModule, where } = require('./runtime').theprogrammablemind
2
+ const { words, defaultContextCheck } = require('./helpers')
3
+ const gdefaults = require('./gdefaults')
4
+ const pos = require('./pos')
5
+ const negation_tests = require('./negation.test.json')
6
+
7
+ let config = {
8
+ name: 'negation',
9
+ operators: [
10
+ "([negatable])",
11
+ "([not] (negatable/*))",
12
+ ],
13
+ bridges: [
14
+ {
15
+ id: 'not',
16
+ bridge: '{ ...after[0], negated: operator, modifiers: append(["negated"], after[0].modifiers) }',
17
+ before: ['verb'],
18
+ localHierarchy: [['unknown', 'negatable']],
19
+ },
20
+ { id: 'negatable', words: words('negatable') },
21
+ ],
22
+ };
23
+
24
+ knowledgeModule( {
25
+ config,
26
+ includes: [gdefaults, pos],
27
+
28
+ module,
29
+ description: 'negation',
30
+ test: {
31
+ name: './negation.test.json',
32
+ contents: negation_tests,
33
+ checks: {
34
+ context: defaultContextCheck,
35
+ },
36
+ },
37
+ })
38
+
@@ -0,0 +1,308 @@
1
+ [
2
+ {
3
+ "associations": [
4
+ [
5
+ [
6
+ "negatable",
7
+ 0
8
+ ],
9
+ [
10
+ "not",
11
+ 0
12
+ ]
13
+ ]
14
+ ],
15
+ "config": {
16
+ },
17
+ "contexts": [
18
+ {
19
+ "dead": true,
20
+ "level": 1,
21
+ "marker": "negatable",
22
+ "modifiers": [
23
+ "negated"
24
+ ],
25
+ "negated": {
26
+ "default": true,
27
+ "level": 0,
28
+ "marker": "not",
29
+ "range": {
30
+ "end": 2,
31
+ "start": 0
32
+ },
33
+ "text": "not",
34
+ "value": "not",
35
+ "word": "not"
36
+ },
37
+ "number": "one",
38
+ "range": {
39
+ "end": 12,
40
+ "start": 0
41
+ },
42
+ "text": "not negatable",
43
+ "topLevel": true,
44
+ "types": [
45
+ "negatable"
46
+ ],
47
+ "word": "negatable"
48
+ }
49
+ ],
50
+ "developerTest": false,
51
+ "generatedParenthesized": [
52
+ ""
53
+ ],
54
+ "metadata": {
55
+ "opChoices": [
56
+ {
57
+ "counter": 1,
58
+ "op": [
59
+ "negatable",
60
+ 0
61
+ ],
62
+ "ops": [
63
+ [
64
+ "negatable",
65
+ 0
66
+ ],
67
+ [
68
+ "not",
69
+ 0
70
+ ]
71
+ ]
72
+ },
73
+ {
74
+ "counter": 2,
75
+ "op": [
76
+ "not",
77
+ 0
78
+ ],
79
+ "ops": [
80
+ [
81
+ "not",
82
+ 0
83
+ ]
84
+ ]
85
+ }
86
+ ]
87
+ },
88
+ "objects": {
89
+ "nameToUUID": {
90
+ "gdefaults": "gdefaults2",
91
+ "negation": "negation1",
92
+ "tokenize": "tokenize2"
93
+ },
94
+ "namespaced": {
95
+ "gdefaults2": {
96
+ },
97
+ "negation1": {
98
+ },
99
+ "tokenize2": {
100
+ }
101
+ },
102
+ "processed": [
103
+ {
104
+ "context": {
105
+ "dead": true,
106
+ "level": 1,
107
+ "marker": "negatable",
108
+ "modifiers": [
109
+ "negated"
110
+ ],
111
+ "negated": {
112
+ "default": true,
113
+ "level": 0,
114
+ "marker": "not",
115
+ "range": {
116
+ "end": 2,
117
+ "start": 0
118
+ },
119
+ "text": "not",
120
+ "value": "not",
121
+ "word": "not"
122
+ },
123
+ "number": "one",
124
+ "range": {
125
+ "end": 12,
126
+ "start": 0
127
+ },
128
+ "text": "not negatable",
129
+ "topLevel": true,
130
+ "types": [
131
+ "negatable"
132
+ ],
133
+ "word": "negatable"
134
+ },
135
+ "generatedParenthesized": "",
136
+ "paraphrases": "not negatable",
137
+ "paraphrasesParenthesized": "((not) (negatable))",
138
+ "responses": [
139
+ ""
140
+ ]
141
+ }
142
+ ]
143
+ },
144
+ "paraphrases": [
145
+ "not negatable"
146
+ ],
147
+ "paraphrasesParenthesized": [
148
+ "((not) (negatable))"
149
+ ],
150
+ "query": "not negatable",
151
+ "responses": [
152
+ ""
153
+ ]
154
+ },
155
+ {
156
+ "associations": [
157
+ [
158
+ [
159
+ "negatable",
160
+ 0
161
+ ],
162
+ [
163
+ "not",
164
+ 0
165
+ ]
166
+ ]
167
+ ],
168
+ "config": {
169
+ },
170
+ "contexts": [
171
+ {
172
+ "dead": true,
173
+ "level": 1,
174
+ "marker": "negatable",
175
+ "modifiers": [
176
+ "negated"
177
+ ],
178
+ "negated": {
179
+ "default": true,
180
+ "level": 0,
181
+ "marker": "not",
182
+ "range": {
183
+ "end": 2,
184
+ "start": 0
185
+ },
186
+ "text": "not",
187
+ "value": "not",
188
+ "word": "not"
189
+ },
190
+ "number": "many",
191
+ "range": {
192
+ "end": 13,
193
+ "start": 0
194
+ },
195
+ "text": "not negatables",
196
+ "topLevel": true,
197
+ "types": [
198
+ "negatable"
199
+ ],
200
+ "word": "negatables"
201
+ }
202
+ ],
203
+ "developerTest": false,
204
+ "generatedParenthesized": [
205
+ ""
206
+ ],
207
+ "metadata": {
208
+ "opChoices": [
209
+ {
210
+ "counter": 1,
211
+ "op": [
212
+ "negatable",
213
+ 0
214
+ ],
215
+ "ops": [
216
+ [
217
+ "negatable",
218
+ 0
219
+ ],
220
+ [
221
+ "not",
222
+ 0
223
+ ]
224
+ ]
225
+ },
226
+ {
227
+ "counter": 2,
228
+ "op": [
229
+ "not",
230
+ 0
231
+ ],
232
+ "ops": [
233
+ [
234
+ "not",
235
+ 0
236
+ ]
237
+ ]
238
+ }
239
+ ]
240
+ },
241
+ "objects": {
242
+ "nameToUUID": {
243
+ "gdefaults": "gdefaults2",
244
+ "negation": "negation1",
245
+ "tokenize": "tokenize2"
246
+ },
247
+ "namespaced": {
248
+ "gdefaults2": {
249
+ },
250
+ "negation1": {
251
+ },
252
+ "tokenize2": {
253
+ }
254
+ },
255
+ "processed": [
256
+ {
257
+ "context": {
258
+ "dead": true,
259
+ "level": 1,
260
+ "marker": "negatable",
261
+ "modifiers": [
262
+ "negated"
263
+ ],
264
+ "negated": {
265
+ "default": true,
266
+ "level": 0,
267
+ "marker": "not",
268
+ "range": {
269
+ "end": 2,
270
+ "start": 0
271
+ },
272
+ "text": "not",
273
+ "value": "not",
274
+ "word": "not"
275
+ },
276
+ "number": "many",
277
+ "range": {
278
+ "end": 13,
279
+ "start": 0
280
+ },
281
+ "text": "not negatables",
282
+ "topLevel": true,
283
+ "types": [
284
+ "negatable"
285
+ ],
286
+ "word": "negatables"
287
+ },
288
+ "generatedParenthesized": "",
289
+ "paraphrases": "not negatables",
290
+ "paraphrasesParenthesized": "((not) (negatables))",
291
+ "responses": [
292
+ ""
293
+ ]
294
+ }
295
+ ]
296
+ },
297
+ "paraphrases": [
298
+ "not negatables"
299
+ ],
300
+ "paraphrasesParenthesized": [
301
+ "((not) (negatables))"
302
+ ],
303
+ "query": "not negatables",
304
+ "responses": [
305
+ ""
306
+ ]
307
+ }
308
+ ]
package/common/numbers.js CHANGED
@@ -1,7 +1,8 @@
1
- const { Config, knowledgeModule, where } = require('./runtime').theprogrammablemind
1
+ const { knowledgeModule, where } = require('./runtime').theprogrammablemind
2
2
  const { defaultContextCheck } = require('./helpers')
3
3
  const numbers_tests = require('./numbers.test.json')
4
4
  const gdefaults = require('./gdefaults')
5
+ const sdefaults = require('./sdefaults')
5
6
 
6
7
  /*
7
8
  TODO
@@ -9,39 +10,38 @@ const gdefaults = require('./gdefaults')
9
10
  10 million 300 hundred and fifty
10
11
  */
11
12
 
12
- let configStruct = {
13
+ let config = {
13
14
  name: 'numbers',
14
15
  operators: [
15
16
  "([number])",
16
17
  ],
17
18
  bridges: [
18
- { "id": "number", "level": 0, "bridge": "{ ...next(operator) }" },
19
+ { "id": "number", "level": 0, "bridge": "{ instance: false, ...next(operator) }" },
19
20
  ],
20
21
  debug: false,
21
22
  version: '3',
22
23
  words: {
23
24
  "literals": {
24
- // start with a space for regular expressions
25
- "one": [{"id": "number", "initial": "{ value: 1, instance:true }" }],
26
- "ones": [{"id": "number", "initial": "{ value: 1, number: 'many', instance:true }" }],
27
- "two": [{"id": "number", "initial": "{ value: 2 , instance:true}" }],
28
- "twos": [{"id": "number", "initial": "{ value: 2 , number: 'many', instance:true}" }],
29
- "three": [{"id": "number", "initial": "{ value: 3, instance:true }" }],
30
- "threes": [{"id": "number", "initial": "{ value: 3, number: 'many', instance:true }" }],
31
- "four": [{"id": "number", "initial": "{ value: 4, instance:true }" }],
32
- "fours": [{"id": "number", "initial": "{ value: 4, number: 'many', instance:true }" }],
33
- "five": [{"id": "number", "initial": "{ value: 5, instance:true }" }],
34
- "fives": [{"id": "number", "initial": "{ value: 5, number: 'many', instance:true }" }],
35
- "six": [{"id": "number", "initial": "{ value: 6, instance:true }" }],
36
- "sixes": [{"id": "number", "initial": "{ value: 6, number: 'many', instance:true }" }],
37
- "seven": [{"id": "number", "initial": "{ value: 7, instance:true }" }],
38
- "sevens": [{"id": "number", "initial": "{ value: 7, number: 'many', instance:true }" }],
39
- "eight": [{"id": "number", "initial": "{ value: 8, instance:true }" }],
40
- "eights": [{"id": "number", "initial": "{ value: 8, number: 'many', instance:true }" }],
41
- "nine": [{"id": "number", "initial": "{ value: 9, instance:true }" }],
42
- "nines": [{"id": "number", "initial": "{ value: 9, number: 'many', instance:true }" }],
43
- "ten": [{"id": "number", "initial": "{ value: 10, instance:true }" }],
44
- "tens": [{"id": "number", "initial": "{ value: 10, number: 'many', instance:true }" }],
25
+ "one": [{"id": "number", "initial": "{ value: 1, instance: true }" }],
26
+ "ones": [{"id": "number", "initial": "{ value: 1, number: 'many', instance: true }" }],
27
+ "two": [{"id": "number", "initial": "{ value: 2 , instance: true}" }],
28
+ "twos": [{"id": "number", "initial": "{ value: 2 , number: 'many', instance: true}" }],
29
+ "three": [{"id": "number", "initial": "{ value: 3, instance: true }" }],
30
+ "threes": [{"id": "number", "initial": "{ value: 3, number: 'many', instance: true }" }],
31
+ "four": [{"id": "number", "initial": "{ value: 4, instance: true }" }],
32
+ "fours": [{"id": "number", "initial": "{ value: 4, number: 'many', instance: true }" }],
33
+ "five": [{"id": "number", "initial": "{ value: 5, instance: true }" }],
34
+ "fives": [{"id": "number", "initial": "{ value: 5, number: 'many', instance: true }" }],
35
+ "six": [{"id": "number", "initial": "{ value: 6, instance: true }" }],
36
+ "sixes": [{"id": "number", "initial": "{ value: 6, number: 'many', instance: true }" }],
37
+ "seven": [{"id": "number", "initial": "{ value: 7, instance: true }" }],
38
+ "sevens": [{"id": "number", "initial": "{ value: 7, number: 'many', instance: true }" }],
39
+ "eight": [{"id": "number", "initial": "{ value: 8, instance: true }" }],
40
+ "eights": [{"id": "number", "initial": "{ value: 8, number: 'many', instance: true }" }],
41
+ "nine": [{"id": "number", "initial": "{ value: 9, instance: true }" }],
42
+ "nines": [{"id": "number", "initial": "{ value: 9, number: 'many', instance: true }" }],
43
+ "ten": [{"id": "number", "initial": "{ value: 10, instance: true }" }],
44
+ "tens": [{"id": "number", "initial": "{ value: 10, number: 'many', instance: true }" }],
45
45
  },
46
46
  patterns: [
47
47
  { "pattern": [{ type: 'digit' }, { repeat: true }], defs: [{id: "number", uuid: '1', initial: "{ value: int(text), instance: true }" }]},
@@ -83,15 +83,11 @@ let configStruct = {
83
83
  ],
84
84
  };
85
85
 
86
- const createConfig = () => {
87
- const config = new Config(configStruct, module)
88
- config.add(gdefaults())
89
- return config
90
- }
91
-
92
86
  knowledgeModule( {
87
+ config,
88
+ includes: [gdefaults, sdefaults],
89
+
93
90
  module,
94
- createConfig,
95
91
  description: 'talking about numbers',
96
92
  test: {
97
93
  name: './numbers.test.json',