tpmkms 8.0.0-beta.31 → 8.0.0-beta.32
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/animals.instance.json +325 -0
- package/common/articles.js +108 -0
- package/common/articles.test.json +310 -0
- package/common/colors.instance.json +340 -0
- package/common/crew.instance.json +525 -0
- package/common/dialogues.js +66 -102
- package/common/dimension.instance.json +20 -0
- package/common/edible.instance.json +650 -28
- package/common/emotions.instance.json +25 -0
- package/common/evaluate.instance.json +2 -0
- package/common/evaluate.js +55 -0
- package/common/evaluate.test.json +574 -0
- package/common/fastfood.instance.json +1989 -329
- package/common/formulas.instance.json +20 -0
- package/common/gdefaults.js +6 -6
- package/common/help.test.json +16 -4
- package/common/helpers.js +1 -1
- package/common/kirk.instance.json +20 -0
- package/common/length.instance.json +300 -0
- package/common/math.instance.json +25 -0
- package/common/nameable.instance.json +2 -0
- package/common/nameable.js +137 -0
- package/common/nameable.test.json +1545 -0
- package/common/ordering.instance.json +50 -0
- package/common/people.instance.json +165 -0
- package/common/pipboy.instance.json +340 -0
- package/common/pokemon.instance.json +265 -0
- package/common/pressure.instance.json +80 -0
- package/common/properties.instance.json +25 -0
- package/common/reports.instance.json +41 -1
- package/common/spock.instance.json +20 -0
- package/common/stm.js +109 -3
- package/common/stm.test.json +1702 -1
- package/common/temperature.instance.json +192 -0
- package/common/ui.instance.json +20 -0
- package/common/weight.instance.json +240 -0
- package/main.js +6 -0
- package/package.json +13 -2
package/common/dialogues.js
CHANGED
@@ -2,6 +2,7 @@ const { Config, knowledgeModule, where, stableId } = require('./runtime').thepro
|
|
2
2
|
const meta = require('./meta.js')
|
3
3
|
const gdefaults = require('./gdefaults.js')
|
4
4
|
const sdefaults = require('./sdefaults.js')
|
5
|
+
const articles = require('./articles.js')
|
5
6
|
const pos = require('./pos.js')
|
6
7
|
const negation = require('./negation.js')
|
7
8
|
const punctuation = require('./punctuation.js')
|
@@ -50,15 +51,15 @@ let configStruct = {
|
|
50
51
|
{ pattern: "([nevermindTestSetup] (allowed))", development: true },
|
51
52
|
"([why])",
|
52
53
|
"([reason])",
|
53
|
-
"([thisitthat|])",
|
54
|
-
"([it])",
|
55
|
-
"([this])",
|
56
|
-
"([that])",
|
54
|
+
// "([thisitthat|])",
|
55
|
+
// "([it])",
|
56
|
+
// "([this])",
|
57
|
+
// "([that])",
|
57
58
|
|
58
59
|
"(<what> ([whatAble|]))",
|
59
60
|
"([what:optional])",
|
60
|
-
"(<the|> ([theAble|]))",
|
61
|
-
"(<a|a,an> ([theAble|]))",
|
61
|
+
// "(<the|> ([theAble|]))",
|
62
|
+
// "(<a|a,an> ([theAble|]))",
|
62
63
|
// "([unknown])",
|
63
64
|
|
64
65
|
"([be] ([briefOrWordy|]))",
|
@@ -177,7 +178,7 @@ let configStruct = {
|
|
177
178
|
{ id: "canBeQuestion", level: 1, bridge: "{ ...next(operator) }" },
|
178
179
|
// { id: "unknown", level: 0, bridge: "{ ...next(operator), unknown: true, dead: true }" },
|
179
180
|
// { id: "unknown", level: 1, bridge: "{ ...next(operator) }" },
|
180
|
-
{ id: "queryable", level: 0, bridge: "{ ...next(operator) }" },
|
181
|
+
// { id: "queryable", level: 0, bridge: "{ ...next(operator) }" },
|
181
182
|
{ id: "questionMark", level: 0, bridge: "{ ...before[0], query: [before.marker] }" },
|
182
183
|
// { id: "isEd", level: 0, bridge: "{ ...context, query: true }" },
|
183
184
|
// gregbug
|
@@ -206,6 +207,7 @@ let configStruct = {
|
|
206
207
|
{ id: "doesAble", level: 1, bridge: "{ ...next(operator), before: before[0] }" },
|
207
208
|
{ id: "does", level: 0, bridge: "{ query: true, what: operator.marker, ...context, number: operator.number, object.number: operator.number }*" },
|
208
209
|
|
210
|
+
/*
|
209
211
|
{
|
210
212
|
id: 'the',
|
211
213
|
level: 0,
|
@@ -217,13 +219,17 @@ let configStruct = {
|
|
217
219
|
// bridge: "{ ...after[0], pullFromContext: false, instance: true, concept: true, number: 'one', wantsValue: true, determiner: operator, modifiers: append(['determiner'], after[0].modifiers) }"
|
218
220
|
bridge: "{ ...after[0], pullFromContext: false, concept: true, number: 'one', wantsValue: true, determiner: operator, modifiers: append(['determiner'], after[0].modifiers) }"
|
219
221
|
},
|
222
|
+
*/
|
223
|
+
/*
|
220
224
|
{
|
221
225
|
id: "theAble",
|
222
226
|
children: ['noun'],
|
223
227
|
bridge: "{ ...next(operator) }"
|
224
228
|
},
|
229
|
+
*/
|
225
230
|
|
226
231
|
// TODO make this hierarchy thing work
|
232
|
+
/*
|
227
233
|
{
|
228
234
|
id: "thisitthat",
|
229
235
|
level: 0,
|
@@ -231,6 +237,7 @@ let configStruct = {
|
|
231
237
|
before: ['verby'],
|
232
238
|
bridge: "{ ...next(operator) }"
|
233
239
|
},
|
240
|
+
*/
|
234
241
|
{
|
235
242
|
id: "nevermind",
|
236
243
|
bridge: "{ ...next(operator) }",
|
@@ -279,6 +286,7 @@ let configStruct = {
|
|
279
286
|
isA: ['theAble', 'queryable'],
|
280
287
|
bridge: "{ ...next(operator) }"
|
281
288
|
},
|
289
|
+
/*
|
282
290
|
{
|
283
291
|
id: "it",
|
284
292
|
level: 0,
|
@@ -297,11 +305,12 @@ let configStruct = {
|
|
297
305
|
isA: ['thisitthat'],
|
298
306
|
bridge: "{ ...next(operator), unknown: true, pullFromContext: true }"
|
299
307
|
},
|
308
|
+
*/
|
300
309
|
],
|
301
310
|
words: {
|
302
311
|
"literals": {
|
303
312
|
"?": [{"id": "questionMark", "initial": "{}" }],
|
304
|
-
"the": [{"id": "the", "initial": "{ modifiers: [] }" }],
|
313
|
+
// "the": [{"id": "the", "initial": "{ modifiers: [] }" }],
|
305
314
|
"who": [{"id": "what", "initial": "{ modifiers: [], query: true }" }],
|
306
315
|
"yes": [{"id": "yesno", "initial": "{ value: true }" }],
|
307
316
|
"no": [{"id": "yesno", "initial": "{ value: false }" }],
|
@@ -598,99 +607,54 @@ let configStruct = {
|
|
598
607
|
context.isResponse = true
|
599
608
|
}
|
600
609
|
},
|
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
|
-
"marker": "unknown",
|
651
|
-
"range": {
|
652
|
-
"start": 24,
|
653
|
-
"end": 32
|
654
|
-
},
|
655
|
-
"word": "price",
|
656
|
-
"text": "the price",
|
657
|
-
"value": "price",
|
658
|
-
"unknown": true,
|
659
|
-
"types": [
|
660
|
-
"unknown"
|
661
|
-
],
|
662
|
-
"pullFromContext": true,
|
663
|
-
"concept": true,
|
664
|
-
"wantsValue": true,
|
665
|
-
"determiner": "the",
|
666
|
-
"modifiers": [
|
667
|
-
"determiner"
|
668
|
-
],
|
669
|
-
"evaluate": true
|
670
|
-
}
|
671
|
-
|
672
|
-
*/
|
673
|
-
context.value = kms.stm.api.mentions(context)
|
674
|
-
if (!context.value) {
|
675
|
-
// retry()
|
676
|
-
context.value = { marker: 'answerNotKnown' }
|
677
|
-
return
|
678
|
-
}
|
679
|
-
// avoid loops
|
680
|
-
if (context.marker != 'unknown') {
|
681
|
-
if (context.value.marker != context.marker) {
|
682
|
-
const instance = await e(context.value)
|
683
|
-
if (instance.evalue && !instance.edefault) {
|
684
|
-
context.value = instance.evalue
|
685
|
-
}
|
686
|
-
}
|
687
|
-
}
|
688
|
-
if (context.evaluate) {
|
689
|
-
context.evalue = context.value
|
690
|
-
}
|
691
|
-
}
|
692
|
-
},
|
693
|
-
},
|
610
|
+
// {
|
611
|
+
// where: where(),
|
612
|
+
// notes: 'pull from context',
|
613
|
+
// // match: ({context}) => context.marker == 'it' && context.pullFromContext, // && context.value,
|
614
|
+
// match: ({context, callId}) => false && context.pullFromContext && !context.same, // && context.value,
|
615
|
+
// apply: async ({callId, context, kms, e, log, retry}) => {
|
616
|
+
// if (true) {
|
617
|
+
// /*
|
618
|
+
// {
|
619
|
+
// "marker": "unknown",
|
620
|
+
// "range": {
|
621
|
+
// "start": 65,
|
622
|
+
// "end": 73
|
623
|
+
// },
|
624
|
+
// "word": "worth",
|
625
|
+
// "text": "the worth",
|
626
|
+
// "value": "worth",
|
627
|
+
// "unknown": true,
|
628
|
+
// "types": [
|
629
|
+
// "unknown"
|
630
|
+
// ],
|
631
|
+
// "pullFromContext": true,
|
632
|
+
// "concept": true,
|
633
|
+
// "wantsValue": true,
|
634
|
+
// "determiner": "the",
|
635
|
+
// "modifiers": [
|
636
|
+
// "determiner"
|
637
|
+
// ],
|
638
|
+
// "evaluate": true
|
639
|
+
// }
|
640
|
+
|
641
|
+
// */
|
642
|
+
// context.value = kms.stm.api.mentions(context)
|
643
|
+
// if (!context.value) {
|
644
|
+
// // retry()
|
645
|
+
// context.value = { marker: 'answerNotKnown' }
|
646
|
+
// return
|
647
|
+
// }
|
648
|
+
//
|
649
|
+
// const instance = await e(context.value)
|
650
|
+
// if (instance.evalue && !instance.edefault) {
|
651
|
+
// context.value = instance.evalue
|
652
|
+
// }
|
653
|
+
// if (context.evaluate) {
|
654
|
+
// context.evalue = context.value
|
655
|
+
// }
|
656
|
+
// },
|
657
|
+
// },
|
694
658
|
{
|
695
659
|
where: where(),
|
696
660
|
notes: 'what x is y?',
|
@@ -937,7 +901,7 @@ const createConfig = async () => {
|
|
937
901
|
const config = new Config(configStruct, module)
|
938
902
|
config.stop_auto_rebuild()
|
939
903
|
await config.setApi(api)
|
940
|
-
await config.add(gdefaults, sdefaults, pos, negation, stm, meta, punctuation)
|
904
|
+
await config.add(articles, gdefaults, sdefaults, pos, negation, stm, meta, punctuation)
|
941
905
|
await config.initializer( ({objects, config, isModule}) => {
|
942
906
|
/* TODO add this beck in. some stuff from config needs to be here
|
943
907
|
config.addArgs((args) => ({
|
@@ -188,6 +188,11 @@
|
|
188
188
|
"queryable",
|
189
189
|
false
|
190
190
|
],
|
191
|
+
[
|
192
|
+
"evaluate",
|
193
|
+
"verby",
|
194
|
+
false
|
195
|
+
],
|
191
196
|
[
|
192
197
|
"expression",
|
193
198
|
"expression",
|
@@ -428,6 +433,11 @@
|
|
428
433
|
"theAble",
|
429
434
|
false
|
430
435
|
],
|
436
|
+
[
|
437
|
+
"memorable",
|
438
|
+
"theAble",
|
439
|
+
false
|
440
|
+
],
|
431
441
|
[
|
432
442
|
"minusExpression",
|
433
443
|
"mathematicalExpression",
|
@@ -593,6 +603,16 @@
|
|
593
603
|
"theAble",
|
594
604
|
false
|
595
605
|
],
|
606
|
+
[
|
607
|
+
"remember",
|
608
|
+
"verby",
|
609
|
+
false
|
610
|
+
],
|
611
|
+
[
|
612
|
+
"stm_before",
|
613
|
+
"adjective",
|
614
|
+
false
|
615
|
+
],
|
596
616
|
[
|
597
617
|
"that",
|
598
618
|
"thisitthat",
|