tpmkms_4wp 9.5.1-beta.33 → 9.5.1-beta.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/common/colors.instance.json +2 -2
- package/common/comparable.instance.json +1 -1
- package/common/concept.js +9 -8
- package/common/concept.test.json +142 -120
- package/common/crew.instance.json +38 -2
- package/common/dimension.instance.json +6 -6
- package/common/drone.instance.json +7 -5
- package/common/drone.js +27 -8
- package/common/drone.test.json +7511 -1959
- package/common/edible.instance.json +9 -9
- package/common/errors.js +3 -3
- package/common/fastfood.instance.json +187 -75
- package/common/fastfood.js +7 -7
- package/common/math.instance.json +1 -1
- package/common/menus.instance.json +1 -1
- package/common/people.instance.json +3 -3
- package/common/pipboy.instance.json +1 -1
- package/common/pokemon.instance.json +5 -5
- package/common/properties.test.json +595 -89
- package/common/reminders.js +2 -2
- package/common/reports.instance.json +2 -2
- package/common/stm.js +1 -1
- package/common/temperature.instance.json +0 -112
- package/common/weight.instance.json +1 -1
- package/package.json +2 -2
|
@@ -30451,7 +30451,7 @@
|
|
|
30451
30451
|
"end": 25
|
|
30452
30452
|
},
|
|
30453
30453
|
"dead": true,
|
|
30454
|
-
"
|
|
30454
|
+
"conceptModifiers": [
|
|
30455
30455
|
{
|
|
30456
30456
|
"value": "brightness_colors",
|
|
30457
30457
|
"number": "one",
|
|
@@ -32660,7 +32660,7 @@
|
|
|
32660
32660
|
"end": 17
|
|
32661
32661
|
},
|
|
32662
32662
|
"dead": true,
|
|
32663
|
-
"
|
|
32663
|
+
"conceptModifiers": [
|
|
32664
32664
|
{
|
|
32665
32665
|
"value": "hex",
|
|
32666
32666
|
"unknown": true,
|
package/common/concept.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
const { knowledgeModule, flatten, where, Digraph } = require('./runtime').theprogrammablemind
|
|
2
|
-
const { defaultContextCheck } = require('./helpers')
|
|
2
|
+
const { defaultContextCheck, defaultContextCheckProperties } = require('./helpers')
|
|
3
3
|
const { API }= require('./helpers/concept')
|
|
4
4
|
const dialogues = require('./dialogues.js')
|
|
5
5
|
const concept_tests = require('./concept.test.json')
|
|
@@ -27,25 +27,26 @@ config = {
|
|
|
27
27
|
isA: ['verb'],
|
|
28
28
|
words: [{ word: 'modifies', number: 'one', flatten: false }, { word: 'modify', number: 'many', flatten: true }],
|
|
29
29
|
// bridge: "{ ...next(operator), modifiers: before, concept: after[0], flatten: true }"
|
|
30
|
-
bridge: "{ ...next(operator),
|
|
30
|
+
bridge: "{ ...next(operator), conceptModifiers: before[0], concept: after[0] }",
|
|
31
31
|
semantic: {
|
|
32
32
|
notes: 'define a modifier',
|
|
33
33
|
where: where(),
|
|
34
34
|
apply: ({config, query, km, context}) => {
|
|
35
35
|
let modifiers
|
|
36
36
|
if (context.literally) {
|
|
37
|
-
literalModifiers = context.
|
|
37
|
+
literalModifiers = context.conceptModifiers[0]
|
|
38
38
|
// modifiers = literalModifiers.value.map(modifier => modifier.value)
|
|
39
39
|
modifiers = literalModifiers.value
|
|
40
40
|
modifiers = modifiers.slice(0, -1).concat([literalModifiers.marker]).concat(modifiers.slice(-1))
|
|
41
41
|
} else {
|
|
42
|
-
modifiers = context.
|
|
42
|
+
modifiers = context.conceptModifiers
|
|
43
43
|
// modifiers = context.modifiers.map(modifier => modifier.value)
|
|
44
44
|
}
|
|
45
45
|
// km('concept').api.kindOfConcept({ config, modifiers, object: context.concept.value || context.concept.marker })
|
|
46
46
|
km('concept').api.kindOfConcept({ config, modifiers, object: context.concept })
|
|
47
47
|
}
|
|
48
48
|
},
|
|
49
|
+
check: defaultContextCheckProperties(['concept', 'conceptModifiers']),
|
|
49
50
|
},
|
|
50
51
|
{ id: "literally", bridge: "{ ...after[0], flatten: false, literally: true }" },
|
|
51
52
|
{ id: "concept" },
|
|
@@ -80,7 +81,7 @@ config = {
|
|
|
80
81
|
},
|
|
81
82
|
*/
|
|
82
83
|
where: where(),
|
|
83
|
-
match: ({context}) => {
|
|
84
|
+
match: ({context, callId}) => {
|
|
84
85
|
if (!context.paraphrase) {
|
|
85
86
|
return
|
|
86
87
|
}
|
|
@@ -121,13 +122,13 @@ config = {
|
|
|
121
122
|
match: ({context}) => context.marker == 'modifies' && context.paraphrase,
|
|
122
123
|
apply: async ({context, gp, gw}) => {
|
|
123
124
|
const modifiers = []
|
|
124
|
-
for (modifier of context.
|
|
125
|
+
for (modifier of context.conceptModifiers) {
|
|
125
126
|
modifiers.push(await gp(modifier))
|
|
126
127
|
}
|
|
127
128
|
if (context.literally) {
|
|
128
|
-
return `${modifiers.join(" ")} literally ${await gw(context, { number: context.
|
|
129
|
+
return `${modifiers.join(" ")} literally ${await gw(context, { number: context.conceptModifiers[context.conceptModifiers.length - 1] })} ${await gp(context.concept)}`
|
|
129
130
|
} else {
|
|
130
|
-
return `${modifiers.join(" ")} ${await gw(context, { number: context.
|
|
131
|
+
return `${modifiers.join(" ")} ${await gw(context, { number: context.conceptModifiers[context.conceptModifiers.length - 1] })} ${await gp(context.concept)}`
|
|
131
132
|
}
|
|
132
133
|
}
|
|
133
134
|
// const chosen = chooseNumber(context, word.singular, word.plural)
|
package/common/concept.test.json
CHANGED
|
@@ -29,13 +29,7 @@
|
|
|
29
29
|
"value": "strips",
|
|
30
30
|
"word": "strips"
|
|
31
31
|
},
|
|
32
|
-
"
|
|
33
|
-
"context_index": 1,
|
|
34
|
-
"dead": true,
|
|
35
|
-
"flatten": false,
|
|
36
|
-
"level": 1,
|
|
37
|
-
"marker": "modifies",
|
|
38
|
-
"modifiers": [
|
|
32
|
+
"conceptModifiers": [
|
|
39
33
|
{
|
|
40
34
|
"dead": true,
|
|
41
35
|
"level": 0,
|
|
@@ -50,6 +44,12 @@
|
|
|
50
44
|
"word": "chicken"
|
|
51
45
|
}
|
|
52
46
|
],
|
|
47
|
+
"context_id": 2,
|
|
48
|
+
"context_index": 1,
|
|
49
|
+
"dead": true,
|
|
50
|
+
"flatten": false,
|
|
51
|
+
"level": 1,
|
|
52
|
+
"marker": "modifies",
|
|
53
53
|
"number": "one",
|
|
54
54
|
"range": {
|
|
55
55
|
"end": 22,
|
|
@@ -138,7 +138,8 @@
|
|
|
138
138
|
"punctuation": "punctuation2",
|
|
139
139
|
"sdefaults": "sdefaults2",
|
|
140
140
|
"stm": "stm2",
|
|
141
|
-
"tokenize": "tokenize2"
|
|
141
|
+
"tokenize": "tokenize2",
|
|
142
|
+
"words": "words2"
|
|
142
143
|
},
|
|
143
144
|
"namespaced": {
|
|
144
145
|
"articles2": {
|
|
@@ -195,6 +196,11 @@
|
|
|
195
196
|
},
|
|
196
197
|
"tokenize2": {
|
|
197
198
|
"km": "tokenize2"
|
|
199
|
+
},
|
|
200
|
+
"words2": {
|
|
201
|
+
"km": "words2",
|
|
202
|
+
"words": [
|
|
203
|
+
]
|
|
198
204
|
}
|
|
199
205
|
},
|
|
200
206
|
"processed": [
|
|
@@ -213,13 +219,7 @@
|
|
|
213
219
|
"value": "strips",
|
|
214
220
|
"word": "strips"
|
|
215
221
|
},
|
|
216
|
-
"
|
|
217
|
-
"context_index": 1,
|
|
218
|
-
"dead": true,
|
|
219
|
-
"flatten": false,
|
|
220
|
-
"level": 1,
|
|
221
|
-
"marker": "modifies",
|
|
222
|
-
"modifiers": [
|
|
222
|
+
"conceptModifiers": [
|
|
223
223
|
{
|
|
224
224
|
"dead": true,
|
|
225
225
|
"level": 0,
|
|
@@ -234,6 +234,12 @@
|
|
|
234
234
|
"word": "chicken"
|
|
235
235
|
}
|
|
236
236
|
],
|
|
237
|
+
"context_id": 2,
|
|
238
|
+
"context_index": 1,
|
|
239
|
+
"dead": true,
|
|
240
|
+
"flatten": false,
|
|
241
|
+
"level": 1,
|
|
242
|
+
"marker": "modifies",
|
|
237
243
|
"number": "one",
|
|
238
244
|
"range": {
|
|
239
245
|
"end": 22,
|
|
@@ -416,13 +422,7 @@
|
|
|
416
422
|
"value": "cream",
|
|
417
423
|
"word": "cream"
|
|
418
424
|
},
|
|
419
|
-
"
|
|
420
|
-
"context_index": 1,
|
|
421
|
-
"dead": true,
|
|
422
|
-
"flatten": true,
|
|
423
|
-
"level": 1,
|
|
424
|
-
"marker": "modifies",
|
|
425
|
-
"modifiers": [
|
|
425
|
+
"conceptModifiers": [
|
|
426
426
|
{
|
|
427
427
|
"default": true,
|
|
428
428
|
"isList": true,
|
|
@@ -475,6 +475,12 @@
|
|
|
475
475
|
"word": "and"
|
|
476
476
|
}
|
|
477
477
|
],
|
|
478
|
+
"context_id": 2,
|
|
479
|
+
"context_index": 1,
|
|
480
|
+
"dead": true,
|
|
481
|
+
"flatten": true,
|
|
482
|
+
"level": 1,
|
|
483
|
+
"marker": "modifies",
|
|
478
484
|
"number": "many",
|
|
479
485
|
"range": {
|
|
480
486
|
"end": 24,
|
|
@@ -747,7 +753,8 @@
|
|
|
747
753
|
"punctuation": "punctuation2",
|
|
748
754
|
"sdefaults": "sdefaults2",
|
|
749
755
|
"stm": "stm2",
|
|
750
|
-
"tokenize": "tokenize2"
|
|
756
|
+
"tokenize": "tokenize2",
|
|
757
|
+
"words": "words2"
|
|
751
758
|
},
|
|
752
759
|
"namespaced": {
|
|
753
760
|
"articles2": {
|
|
@@ -804,6 +811,11 @@
|
|
|
804
811
|
},
|
|
805
812
|
"tokenize2": {
|
|
806
813
|
"km": "tokenize2"
|
|
814
|
+
},
|
|
815
|
+
"words2": {
|
|
816
|
+
"km": "words2",
|
|
817
|
+
"words": [
|
|
818
|
+
]
|
|
807
819
|
}
|
|
808
820
|
},
|
|
809
821
|
"processed": [
|
|
@@ -924,13 +936,7 @@
|
|
|
924
936
|
"value": "cream",
|
|
925
937
|
"word": "cream"
|
|
926
938
|
},
|
|
927
|
-
"
|
|
928
|
-
"context_index": 1,
|
|
929
|
-
"dead": true,
|
|
930
|
-
"flatten": true,
|
|
931
|
-
"level": 1,
|
|
932
|
-
"marker": "modifies",
|
|
933
|
-
"modifiers": [
|
|
939
|
+
"conceptModifiers": [
|
|
934
940
|
{
|
|
935
941
|
"default": true,
|
|
936
942
|
"isList": true,
|
|
@@ -983,6 +989,12 @@
|
|
|
983
989
|
"word": "and"
|
|
984
990
|
}
|
|
985
991
|
],
|
|
992
|
+
"context_id": 2,
|
|
993
|
+
"context_index": 1,
|
|
994
|
+
"dead": true,
|
|
995
|
+
"flatten": true,
|
|
996
|
+
"level": 1,
|
|
997
|
+
"marker": "modifies",
|
|
986
998
|
"number": "many",
|
|
987
999
|
"range": {
|
|
988
1000
|
"end": 24,
|
|
@@ -1431,13 +1443,7 @@
|
|
|
1431
1443
|
"value": "strips",
|
|
1432
1444
|
"word": "strips"
|
|
1433
1445
|
},
|
|
1434
|
-
"
|
|
1435
|
-
"context_index": 1,
|
|
1436
|
-
"dead": true,
|
|
1437
|
-
"flatten": false,
|
|
1438
|
-
"level": 1,
|
|
1439
|
-
"marker": "modifies",
|
|
1440
|
-
"modifiers": [
|
|
1446
|
+
"conceptModifiers": [
|
|
1441
1447
|
{
|
|
1442
1448
|
"dead": true,
|
|
1443
1449
|
"level": 0,
|
|
@@ -1465,6 +1471,12 @@
|
|
|
1465
1471
|
"word": "chicken"
|
|
1466
1472
|
}
|
|
1467
1473
|
],
|
|
1474
|
+
"context_id": 2,
|
|
1475
|
+
"context_index": 1,
|
|
1476
|
+
"dead": true,
|
|
1477
|
+
"flatten": false,
|
|
1478
|
+
"level": 1,
|
|
1479
|
+
"marker": "modifies",
|
|
1468
1480
|
"number": "one",
|
|
1469
1481
|
"range": {
|
|
1470
1482
|
"end": 26,
|
|
@@ -1659,7 +1671,8 @@
|
|
|
1659
1671
|
"punctuation": "punctuation2",
|
|
1660
1672
|
"sdefaults": "sdefaults2",
|
|
1661
1673
|
"stm": "stm2",
|
|
1662
|
-
"tokenize": "tokenize2"
|
|
1674
|
+
"tokenize": "tokenize2",
|
|
1675
|
+
"words": "words2"
|
|
1663
1676
|
},
|
|
1664
1677
|
"namespaced": {
|
|
1665
1678
|
"articles2": {
|
|
@@ -1716,6 +1729,11 @@
|
|
|
1716
1729
|
},
|
|
1717
1730
|
"tokenize2": {
|
|
1718
1731
|
"km": "tokenize2"
|
|
1732
|
+
},
|
|
1733
|
+
"words2": {
|
|
1734
|
+
"km": "words2",
|
|
1735
|
+
"words": [
|
|
1736
|
+
]
|
|
1719
1737
|
}
|
|
1720
1738
|
},
|
|
1721
1739
|
"processed": [
|
|
@@ -1800,13 +1818,7 @@
|
|
|
1800
1818
|
"value": "strips",
|
|
1801
1819
|
"word": "strips"
|
|
1802
1820
|
},
|
|
1803
|
-
"
|
|
1804
|
-
"context_index": 1,
|
|
1805
|
-
"dead": true,
|
|
1806
|
-
"flatten": false,
|
|
1807
|
-
"level": 1,
|
|
1808
|
-
"marker": "modifies",
|
|
1809
|
-
"modifiers": [
|
|
1821
|
+
"conceptModifiers": [
|
|
1810
1822
|
{
|
|
1811
1823
|
"dead": true,
|
|
1812
1824
|
"level": 0,
|
|
@@ -1834,6 +1846,12 @@
|
|
|
1834
1846
|
"word": "chicken"
|
|
1835
1847
|
}
|
|
1836
1848
|
],
|
|
1849
|
+
"context_id": 2,
|
|
1850
|
+
"context_index": 1,
|
|
1851
|
+
"dead": true,
|
|
1852
|
+
"flatten": false,
|
|
1853
|
+
"level": 1,
|
|
1854
|
+
"marker": "modifies",
|
|
1837
1855
|
"number": "one",
|
|
1838
1856
|
"range": {
|
|
1839
1857
|
"end": 26,
|
|
@@ -2149,13 +2167,7 @@
|
|
|
2149
2167
|
"value": "passion",
|
|
2150
2168
|
"word": "passion"
|
|
2151
2169
|
},
|
|
2152
|
-
"
|
|
2153
|
-
"context_index": 1,
|
|
2154
|
-
"dead": true,
|
|
2155
|
-
"flatten": false,
|
|
2156
|
-
"level": 1,
|
|
2157
|
-
"marker": "modifies",
|
|
2158
|
-
"modifiers": [
|
|
2170
|
+
"conceptModifiers": [
|
|
2159
2171
|
{
|
|
2160
2172
|
"dead": true,
|
|
2161
2173
|
"level": 0,
|
|
@@ -2170,6 +2182,12 @@
|
|
|
2170
2182
|
"word": "mango"
|
|
2171
2183
|
}
|
|
2172
2184
|
],
|
|
2185
|
+
"context_id": 2,
|
|
2186
|
+
"context_index": 1,
|
|
2187
|
+
"dead": true,
|
|
2188
|
+
"flatten": false,
|
|
2189
|
+
"level": 1,
|
|
2190
|
+
"marker": "modifies",
|
|
2173
2191
|
"number": "one",
|
|
2174
2192
|
"range": {
|
|
2175
2193
|
"end": 21,
|
|
@@ -2196,13 +2214,7 @@
|
|
|
2196
2214
|
"value": "smoothie",
|
|
2197
2215
|
"word": "smoothie"
|
|
2198
2216
|
},
|
|
2199
|
-
"
|
|
2200
|
-
"context_index": 1,
|
|
2201
|
-
"dead": true,
|
|
2202
|
-
"flatten": false,
|
|
2203
|
-
"level": 1,
|
|
2204
|
-
"marker": "modifies",
|
|
2205
|
-
"modifiers": [
|
|
2217
|
+
"conceptModifiers": [
|
|
2206
2218
|
{
|
|
2207
2219
|
"atomic": true,
|
|
2208
2220
|
"dead": true,
|
|
@@ -2240,6 +2252,12 @@
|
|
|
2240
2252
|
"word": "passion"
|
|
2241
2253
|
}
|
|
2242
2254
|
],
|
|
2255
|
+
"context_id": 5,
|
|
2256
|
+
"context_index": 1,
|
|
2257
|
+
"dead": true,
|
|
2258
|
+
"flatten": false,
|
|
2259
|
+
"level": 1,
|
|
2260
|
+
"marker": "modifies",
|
|
2243
2261
|
"number": "one",
|
|
2244
2262
|
"range": {
|
|
2245
2263
|
"end": 30,
|
|
@@ -2499,7 +2517,8 @@
|
|
|
2499
2517
|
"punctuation": "punctuation2",
|
|
2500
2518
|
"sdefaults": "sdefaults2",
|
|
2501
2519
|
"stm": "stm2",
|
|
2502
|
-
"tokenize": "tokenize2"
|
|
2520
|
+
"tokenize": "tokenize2",
|
|
2521
|
+
"words": "words2"
|
|
2503
2522
|
},
|
|
2504
2523
|
"namespaced": {
|
|
2505
2524
|
"articles2": {
|
|
@@ -2556,6 +2575,11 @@
|
|
|
2556
2575
|
},
|
|
2557
2576
|
"tokenize2": {
|
|
2558
2577
|
"km": "tokenize2"
|
|
2578
|
+
},
|
|
2579
|
+
"words2": {
|
|
2580
|
+
"km": "words2",
|
|
2581
|
+
"words": [
|
|
2582
|
+
]
|
|
2559
2583
|
}
|
|
2560
2584
|
},
|
|
2561
2585
|
"processed": [
|
|
@@ -2645,13 +2669,7 @@
|
|
|
2645
2669
|
"value": "smoothie",
|
|
2646
2670
|
"word": "smoothie"
|
|
2647
2671
|
},
|
|
2648
|
-
"
|
|
2649
|
-
"context_index": 1,
|
|
2650
|
-
"dead": true,
|
|
2651
|
-
"flatten": false,
|
|
2652
|
-
"level": 1,
|
|
2653
|
-
"marker": "modifies",
|
|
2654
|
-
"modifiers": [
|
|
2672
|
+
"conceptModifiers": [
|
|
2655
2673
|
{
|
|
2656
2674
|
"atomic": true,
|
|
2657
2675
|
"dead": true,
|
|
@@ -2689,6 +2707,12 @@
|
|
|
2689
2707
|
"word": "passion"
|
|
2690
2708
|
}
|
|
2691
2709
|
],
|
|
2710
|
+
"context_id": 5,
|
|
2711
|
+
"context_index": 1,
|
|
2712
|
+
"dead": true,
|
|
2713
|
+
"flatten": false,
|
|
2714
|
+
"level": 1,
|
|
2715
|
+
"marker": "modifies",
|
|
2692
2716
|
"number": "one",
|
|
2693
2717
|
"range": {
|
|
2694
2718
|
"end": 30,
|
|
@@ -2726,13 +2750,7 @@
|
|
|
2726
2750
|
"value": "passion",
|
|
2727
2751
|
"word": "passion"
|
|
2728
2752
|
},
|
|
2729
|
-
"
|
|
2730
|
-
"context_index": 1,
|
|
2731
|
-
"dead": true,
|
|
2732
|
-
"flatten": false,
|
|
2733
|
-
"level": 1,
|
|
2734
|
-
"marker": "modifies",
|
|
2735
|
-
"modifiers": [
|
|
2753
|
+
"conceptModifiers": [
|
|
2736
2754
|
{
|
|
2737
2755
|
"dead": true,
|
|
2738
2756
|
"level": 0,
|
|
@@ -2747,6 +2765,12 @@
|
|
|
2747
2765
|
"word": "mango"
|
|
2748
2766
|
}
|
|
2749
2767
|
],
|
|
2768
|
+
"context_id": 2,
|
|
2769
|
+
"context_index": 1,
|
|
2770
|
+
"dead": true,
|
|
2771
|
+
"flatten": false,
|
|
2772
|
+
"level": 1,
|
|
2773
|
+
"marker": "modifies",
|
|
2750
2774
|
"number": "one",
|
|
2751
2775
|
"range": {
|
|
2752
2776
|
"end": 21,
|
|
@@ -3160,14 +3184,7 @@
|
|
|
3160
3184
|
"value": "pie",
|
|
3161
3185
|
"word": "pie"
|
|
3162
3186
|
},
|
|
3163
|
-
"
|
|
3164
|
-
"context_index": 1,
|
|
3165
|
-
"dead": true,
|
|
3166
|
-
"flatten": false,
|
|
3167
|
-
"level": 1,
|
|
3168
|
-
"literally": true,
|
|
3169
|
-
"marker": "modifies",
|
|
3170
|
-
"modifiers": [
|
|
3187
|
+
"conceptModifiers": [
|
|
3171
3188
|
{
|
|
3172
3189
|
"default": true,
|
|
3173
3190
|
"isList": true,
|
|
@@ -3220,6 +3237,13 @@
|
|
|
3220
3237
|
"word": "and"
|
|
3221
3238
|
}
|
|
3222
3239
|
],
|
|
3240
|
+
"context_id": 2,
|
|
3241
|
+
"context_index": 1,
|
|
3242
|
+
"dead": true,
|
|
3243
|
+
"flatten": false,
|
|
3244
|
+
"level": 1,
|
|
3245
|
+
"literally": true,
|
|
3246
|
+
"marker": "modifies",
|
|
3223
3247
|
"number": "one",
|
|
3224
3248
|
"range": {
|
|
3225
3249
|
"end": 39,
|
|
@@ -3498,7 +3522,8 @@
|
|
|
3498
3522
|
"punctuation": "punctuation2",
|
|
3499
3523
|
"sdefaults": "sdefaults2",
|
|
3500
3524
|
"stm": "stm2",
|
|
3501
|
-
"tokenize": "tokenize2"
|
|
3525
|
+
"tokenize": "tokenize2",
|
|
3526
|
+
"words": "words2"
|
|
3502
3527
|
},
|
|
3503
3528
|
"namespaced": {
|
|
3504
3529
|
"articles2": {
|
|
@@ -3555,6 +3580,11 @@
|
|
|
3555
3580
|
},
|
|
3556
3581
|
"tokenize2": {
|
|
3557
3582
|
"km": "tokenize2"
|
|
3583
|
+
},
|
|
3584
|
+
"words2": {
|
|
3585
|
+
"km": "words2",
|
|
3586
|
+
"words": [
|
|
3587
|
+
]
|
|
3558
3588
|
}
|
|
3559
3589
|
},
|
|
3560
3590
|
"processed": [
|
|
@@ -3654,14 +3684,7 @@
|
|
|
3654
3684
|
"value": "pie",
|
|
3655
3685
|
"word": "pie"
|
|
3656
3686
|
},
|
|
3657
|
-
"
|
|
3658
|
-
"context_index": 1,
|
|
3659
|
-
"dead": true,
|
|
3660
|
-
"flatten": false,
|
|
3661
|
-
"level": 1,
|
|
3662
|
-
"literally": true,
|
|
3663
|
-
"marker": "modifies",
|
|
3664
|
-
"modifiers": [
|
|
3687
|
+
"conceptModifiers": [
|
|
3665
3688
|
{
|
|
3666
3689
|
"default": true,
|
|
3667
3690
|
"isList": true,
|
|
@@ -3714,6 +3737,13 @@
|
|
|
3714
3737
|
"word": "and"
|
|
3715
3738
|
}
|
|
3716
3739
|
],
|
|
3740
|
+
"context_id": 2,
|
|
3741
|
+
"context_index": 1,
|
|
3742
|
+
"dead": true,
|
|
3743
|
+
"flatten": false,
|
|
3744
|
+
"level": 1,
|
|
3745
|
+
"literally": true,
|
|
3746
|
+
"marker": "modifies",
|
|
3717
3747
|
"number": "one",
|
|
3718
3748
|
"range": {
|
|
3719
3749
|
"end": 39,
|
|
@@ -4220,20 +4250,6 @@
|
|
|
4220
4250
|
0
|
|
4221
4251
|
]
|
|
4222
4252
|
],
|
|
4223
|
-
[
|
|
4224
|
-
[
|
|
4225
|
-
"list",
|
|
4226
|
-
1
|
|
4227
|
-
],
|
|
4228
|
-
[
|
|
4229
|
-
"modifies",
|
|
4230
|
-
0
|
|
4231
|
-
],
|
|
4232
|
-
[
|
|
4233
|
-
"unknown",
|
|
4234
|
-
0
|
|
4235
|
-
]
|
|
4236
|
-
],
|
|
4237
4253
|
[
|
|
4238
4254
|
[
|
|
4239
4255
|
"list",
|
|
@@ -4266,13 +4282,7 @@
|
|
|
4266
4282
|
"value": "dude",
|
|
4267
4283
|
"word": "dude"
|
|
4268
4284
|
},
|
|
4269
|
-
"
|
|
4270
|
-
"context_index": 1,
|
|
4271
|
-
"dead": true,
|
|
4272
|
-
"flatten": true,
|
|
4273
|
-
"level": 1,
|
|
4274
|
-
"marker": "modifies",
|
|
4275
|
-
"modifiers": [
|
|
4285
|
+
"conceptModifiers": [
|
|
4276
4286
|
{
|
|
4277
4287
|
"default": true,
|
|
4278
4288
|
"isList": true,
|
|
@@ -4356,6 +4366,12 @@
|
|
|
4356
4366
|
"word": "and"
|
|
4357
4367
|
}
|
|
4358
4368
|
],
|
|
4369
|
+
"context_id": 2,
|
|
4370
|
+
"context_index": 1,
|
|
4371
|
+
"dead": true,
|
|
4372
|
+
"flatten": true,
|
|
4373
|
+
"level": 1,
|
|
4374
|
+
"marker": "modifies",
|
|
4359
4375
|
"number": "many",
|
|
4360
4376
|
"range": {
|
|
4361
4377
|
"end": 24,
|
|
@@ -4585,7 +4601,8 @@
|
|
|
4585
4601
|
"punctuation": "punctuation2",
|
|
4586
4602
|
"sdefaults": "sdefaults2",
|
|
4587
4603
|
"stm": "stm2",
|
|
4588
|
-
"tokenize": "tokenize2"
|
|
4604
|
+
"tokenize": "tokenize2",
|
|
4605
|
+
"words": "words2"
|
|
4589
4606
|
},
|
|
4590
4607
|
"namespaced": {
|
|
4591
4608
|
"articles2": {
|
|
@@ -4642,6 +4659,11 @@
|
|
|
4642
4659
|
},
|
|
4643
4660
|
"tokenize2": {
|
|
4644
4661
|
"km": "tokenize2"
|
|
4662
|
+
},
|
|
4663
|
+
"words2": {
|
|
4664
|
+
"km": "words2",
|
|
4665
|
+
"words": [
|
|
4666
|
+
]
|
|
4645
4667
|
}
|
|
4646
4668
|
},
|
|
4647
4669
|
"processed": [
|
|
@@ -4660,13 +4682,7 @@
|
|
|
4660
4682
|
"value": "dude",
|
|
4661
4683
|
"word": "dude"
|
|
4662
4684
|
},
|
|
4663
|
-
"
|
|
4664
|
-
"context_index": 1,
|
|
4665
|
-
"dead": true,
|
|
4666
|
-
"flatten": true,
|
|
4667
|
-
"level": 1,
|
|
4668
|
-
"marker": "modifies",
|
|
4669
|
-
"modifiers": [
|
|
4685
|
+
"conceptModifiers": [
|
|
4670
4686
|
{
|
|
4671
4687
|
"default": true,
|
|
4672
4688
|
"isList": true,
|
|
@@ -4750,6 +4766,12 @@
|
|
|
4750
4766
|
"word": "and"
|
|
4751
4767
|
}
|
|
4752
4768
|
],
|
|
4769
|
+
"context_id": 2,
|
|
4770
|
+
"context_index": 1,
|
|
4771
|
+
"dead": true,
|
|
4772
|
+
"flatten": true,
|
|
4773
|
+
"level": 1,
|
|
4774
|
+
"marker": "modifies",
|
|
4753
4775
|
"number": "many",
|
|
4754
4776
|
"range": {
|
|
4755
4777
|
"end": 24,
|
|
@@ -1004,7 +1004,7 @@
|
|
|
1004
1004
|
"end": 19
|
|
1005
1005
|
},
|
|
1006
1006
|
"dead": true,
|
|
1007
|
-
"
|
|
1007
|
+
"conceptModifiers": [
|
|
1008
1008
|
{
|
|
1009
1009
|
"value": "crew",
|
|
1010
1010
|
"unknown": true,
|
|
@@ -30382,6 +30382,24 @@
|
|
|
30382
30382
|
0
|
|
30383
30383
|
]
|
|
30384
30384
|
],
|
|
30385
|
+
[
|
|
30386
|
+
[
|
|
30387
|
+
"is",
|
|
30388
|
+
0
|
|
30389
|
+
],
|
|
30390
|
+
[
|
|
30391
|
+
"propertyOf",
|
|
30392
|
+
0
|
|
30393
|
+
],
|
|
30394
|
+
[
|
|
30395
|
+
"the",
|
|
30396
|
+
0
|
|
30397
|
+
],
|
|
30398
|
+
[
|
|
30399
|
+
"unknown",
|
|
30400
|
+
0
|
|
30401
|
+
]
|
|
30402
|
+
],
|
|
30385
30403
|
[
|
|
30386
30404
|
[
|
|
30387
30405
|
"is",
|
|
@@ -32457,7 +32475,7 @@
|
|
|
32457
32475
|
"end": 24
|
|
32458
32476
|
},
|
|
32459
32477
|
"dead": true,
|
|
32460
|
-
"
|
|
32478
|
+
"conceptModifiers": [
|
|
32461
32479
|
{
|
|
32462
32480
|
"value": "photon",
|
|
32463
32481
|
"unknown": true,
|
|
@@ -52852,6 +52870,24 @@
|
|
|
52852
52870
|
0
|
|
52853
52871
|
]
|
|
52854
52872
|
],
|
|
52873
|
+
[
|
|
52874
|
+
[
|
|
52875
|
+
"is",
|
|
52876
|
+
0
|
|
52877
|
+
],
|
|
52878
|
+
[
|
|
52879
|
+
"propertyOf",
|
|
52880
|
+
0
|
|
52881
|
+
],
|
|
52882
|
+
[
|
|
52883
|
+
"the",
|
|
52884
|
+
0
|
|
52885
|
+
],
|
|
52886
|
+
[
|
|
52887
|
+
"unknown",
|
|
52888
|
+
0
|
|
52889
|
+
]
|
|
52890
|
+
],
|
|
52855
52891
|
[
|
|
52856
52892
|
[
|
|
52857
52893
|
"is",
|