tpmkms_4wp 8.0.0-beta.5 → 8.0.0-beta.50
Sign up to get free protection for your applications and to get access to all the features.
- package/common/animals.instance.json +2855 -1363
- package/common/animals.js +17 -20
- package/common/articles.js +103 -0
- package/common/articles.test.json +310 -0
- package/common/avatar.js +5 -9
- package/common/characters.js +22 -28
- package/common/colors.instance.json +6978 -3493
- package/common/colors.js +4 -8
- package/common/colors.test.json +345 -780
- package/common/comparable.js +5 -22
- package/common/concept.js +120 -118
- package/common/countable.js +18 -12
- package/common/countable.test.json +1050 -0
- package/common/crew.instance.json +13032 -6570
- package/common/crew.js +36 -41
- package/common/crew.test.json +714 -452
- package/common/currency.js +27 -45
- package/common/dialogues.js +158 -282
- package/common/dimension.instance.json +273 -272
- package/common/dimension.js +16 -22
- package/common/dimension.test.json +446 -1640
- package/common/edible.instance.json +19911 -9877
- package/common/edible.js +3 -8
- package/common/emotions.instance.json +146 -128
- package/common/emotions.js +35 -38
- package/common/evaluate.instance.json +2 -0
- package/common/evaluate.js +49 -0
- package/common/evaluate.test.json +574 -0
- package/common/events.js +9 -13
- package/common/fastfood.instance.json +221141 -111240
- package/common/fastfood.js +70 -80
- package/common/formulas.instance.json +251 -265
- package/common/formulas.js +17 -24
- package/common/gdefaults.js +24 -26
- package/common/help.js +7 -12
- package/common/help.test.json +22 -22
- package/common/helpers/concept.js +9 -6
- package/common/helpers/dialogues.js +2 -3
- package/common/helpers/properties.js +52 -58
- package/common/helpers.js +1 -1
- package/common/hierarchy.js +16 -24
- package/common/javascript.js +11 -18
- package/common/kirk.instance.json +583 -289
- package/common/kirk.js +5 -8
- package/common/length.instance.json +5530 -4754
- package/common/length.js +4 -8
- package/common/listener.js +48 -0
- package/common/listener.test.json +104 -0
- package/common/math.instance.json +192 -1184
- package/common/math.js +15 -19
- package/common/meta.js +23 -47
- package/common/nameable.instance.json +2 -0
- package/common/nameable.js +135 -0
- package/common/nameable.test.json +2121 -0
- package/common/negation.instance.json +2 -0
- package/common/negation.js +38 -0
- package/common/negation.test.json +308 -0
- package/common/numbers.js +6 -10
- package/common/ordering.instance.json +340 -160
- package/common/ordering.js +80 -86
- package/common/people.instance.json +2066 -1014
- package/common/people.js +8 -13
- package/common/percentages.instance.json +2 -0
- package/common/percentages.js +53 -0
- package/common/percentages.test.json +751 -0
- package/common/pipboy.instance.json +7999 -6269
- package/common/pipboy.js +32 -43
- package/common/pokemon.instance.json +4207 -2069
- package/common/pokemon.js +7 -20
- package/common/pos.js +4 -5
- package/common/pressure.instance.json +1341 -1189
- package/common/pressure.js +4 -8
- package/common/properties.instance.json +130 -60
- package/common/properties.js +56 -133
- package/common/punctuation.js +6 -6
- package/common/reports.instance.json +595 -557
- package/common/reports.js +64 -89
- package/common/scorekeeper.js +18 -30
- package/common/sdefaults.js +16 -7
- package/common/sizeable.js +5 -9
- package/common/spock.instance.json +583 -289
- package/common/spock.js +5 -8
- package/common/stgame.js +19 -19
- package/common/stm.js +163 -26
- package/common/stm.test.json +1734 -1
- package/common/tell.js +14 -18
- package/common/temperature.instance.json +1461 -1293
- package/common/temperature.js +4 -8
- package/common/tester.js +3 -3
- package/common/testing.js +8 -12
- package/common/time.js +20 -25
- package/common/tokenize.js +4 -5
- package/common/ui.instance.json +257 -258
- package/common/ui.js +11 -17
- package/common/weight.instance.json +5212 -4233
- package/common/weight.js +4 -8
- package/common/yesno.js +5 -5
- package/main.js +59 -46
- package/package.json +27 -5
package/common/people.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
const {
|
1
|
+
const { knowledgeModule, where } = require('./runtime').theprogrammablemind
|
2
2
|
const { defaultContextCheck } = require('./helpers')
|
3
3
|
const hierarchy = require('./hierarchy')
|
4
4
|
const people_tests = require('./people.test.json')
|
@@ -25,7 +25,7 @@ const template = {
|
|
25
25
|
// "wendy owns cleo",
|
26
26
|
],
|
27
27
|
}
|
28
|
-
let
|
28
|
+
let config = {
|
29
29
|
name: 'people',
|
30
30
|
operators: [
|
31
31
|
"([person|person,people])",
|
@@ -45,11 +45,7 @@ let configStruct = {
|
|
45
45
|
],
|
46
46
|
};
|
47
47
|
|
48
|
-
const
|
49
|
-
const config = new Config(configStruct, module)
|
50
|
-
config.stop_auto_rebuild()
|
51
|
-
config.add(hierarchy())
|
52
|
-
config.initializer( ({baseConfig, context, apis, isModule}) => {
|
48
|
+
const initializer = ({baseConfig, context, apis, isModule}) => {
|
53
49
|
// const api = km('properties').api
|
54
50
|
const api = apis('properties')
|
55
51
|
// setup paraphrase
|
@@ -65,16 +61,15 @@ const createConfig = () => {
|
|
65
61
|
edAble: { operator: 'owned', word: 'owned' },
|
66
62
|
config: baseConfig
|
67
63
|
})
|
68
|
-
|
69
|
-
})
|
70
|
-
config.restart_auto_rebuild()
|
71
|
-
return config
|
72
|
-
}
|
64
|
+
}
|
73
65
|
|
74
66
|
knowledgeModule( {
|
67
|
+
config,
|
68
|
+
includes: [hierarchy],
|
69
|
+
initializer,
|
70
|
+
|
75
71
|
module,
|
76
72
|
description: 'about people',
|
77
|
-
createConfig,
|
78
73
|
test: {
|
79
74
|
name: './people.test.json',
|
80
75
|
contents: people_tests,
|
@@ -0,0 +1,53 @@
|
|
1
|
+
const { knowledgeModule, where } = require('./runtime').theprogrammablemind
|
2
|
+
const { defaultContextCheck } = require('./helpers')
|
3
|
+
const percentages_tests = require('./percentages.test.json')
|
4
|
+
const numbers = require('./numbers')
|
5
|
+
|
6
|
+
let config = {
|
7
|
+
name: 'percentages',
|
8
|
+
operators: [
|
9
|
+
"((number/*) [percent])",
|
10
|
+
"((percent/1) [percentageOf|of] (number/*))",
|
11
|
+
],
|
12
|
+
bridges: [
|
13
|
+
{
|
14
|
+
id: "percent",
|
15
|
+
words: ['percent', '%'],
|
16
|
+
bridge: "{ ...next(operator), modifiers: ['scale'], scale: before[0] }",
|
17
|
+
generatorp: ({context}) => context.text,
|
18
|
+
},
|
19
|
+
{
|
20
|
+
id: "percentageOf",
|
21
|
+
words: ['percent', '%'],
|
22
|
+
bridge: "{ ...next(operator), percentage: before[0], isResponse: true, semanticIsEvaluate: true, value: after[0] }",
|
23
|
+
evaluator: async ({context, e}) => {
|
24
|
+
const scale = context.percentage.scale
|
25
|
+
const number = await e(context.value)
|
26
|
+
const percentage = number.value * scale.value / 100
|
27
|
+
const result = { ...number, value: percentage, word: null, text: null }
|
28
|
+
context.evalue = result
|
29
|
+
context.isReponse = true
|
30
|
+
context.paraphrase = false
|
31
|
+
},
|
32
|
+
generatorp: ({context}) => context.text,
|
33
|
+
},
|
34
|
+
],
|
35
|
+
debug: false,
|
36
|
+
version: '3',
|
37
|
+
};
|
38
|
+
|
39
|
+
knowledgeModule( {
|
40
|
+
config,
|
41
|
+
includes: [numbers],
|
42
|
+
|
43
|
+
module,
|
44
|
+
description: 'talking about percentages',
|
45
|
+
test: {
|
46
|
+
name: './percentages.test.json',
|
47
|
+
contents: percentages_tests,
|
48
|
+
checks: {
|
49
|
+
context: [...defaultContextCheck, { property: 'scale', filter: ['marker', 'word', 'value'] }],
|
50
|
+
},
|
51
|
+
|
52
|
+
},
|
53
|
+
})
|