theprogrammablemind_4wp 9.2.0-beta.3 → 9.2.0-beta.5
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/client.js +20 -2
- package/package.json +1 -1
package/client.js
CHANGED
@@ -265,6 +265,7 @@ const _process = async (config, query, { initializer, commandLineArgs, credentia
|
|
265
265
|
if (credentials) {
|
266
266
|
config.server(credentials.server, credentials.key)
|
267
267
|
}
|
268
|
+
|
268
269
|
const url = config._server
|
269
270
|
const queryParams = config._queryParams || ''
|
270
271
|
const retries = 2
|
@@ -280,7 +281,7 @@ const _process = async (config, query, { initializer, commandLineArgs, credentia
|
|
280
281
|
throw error
|
281
282
|
}
|
282
283
|
|
283
|
-
let { data, /* generators, semantics, */ hierarchy } = setupProcessB({ config, initializer, allowDelta: true })
|
284
|
+
let { data, /* generators, semantics, */ hierarchy } = setupProcessB({ config, initializer, allowDelta: true, rebuildingTemplate })
|
284
285
|
if (commandLineArgs && commandLineArgs.checkForLoop) {
|
285
286
|
data.checkForLoop = commandLineArgs.checkForLoop
|
286
287
|
}
|
@@ -371,6 +372,7 @@ const _process = async (config, query, { initializer, commandLineArgs, credentia
|
|
371
372
|
response.version = json.version
|
372
373
|
response.explain_priorities = json.explain_priorities
|
373
374
|
response.contextual_priorities_ambiguities = json.contextual_priorities_ambiguities
|
375
|
+
response.rtf_associations = json.rtf_associations
|
374
376
|
|
375
377
|
response.contexts = response.contexts.concat(contextsPrime)
|
376
378
|
response.generated = response.generated.concat(generatedPrime)
|
@@ -1671,12 +1673,28 @@ const knowledgeModuleImpl = async ({
|
|
1671
1673
|
newError = true
|
1672
1674
|
headerShown = true
|
1673
1675
|
if (args.vimdiff) {
|
1674
|
-
vimdiff(actual, expected, `"${
|
1676
|
+
vimdiff(actual, expected, `"${label} - ${result.utterance}"`)
|
1675
1677
|
}
|
1676
1678
|
result.hasError = true
|
1677
1679
|
}
|
1678
1680
|
}
|
1679
1681
|
if (!deepEqual(result.expected.summaries, result.actual.summaries)) {
|
1682
|
+
const tidy_summaries = (summaries) => {
|
1683
|
+
const summaries_prime = []
|
1684
|
+
for (const chunk of summaries) {
|
1685
|
+
chunk_prime = { length: chunk.length, summaries: [] }
|
1686
|
+
for (const summary of chunk.summaries) {
|
1687
|
+
const summary_prime = { counter: summary.counter, operators: [] }
|
1688
|
+
for (const operator of summary.operators) {
|
1689
|
+
summary_prime.operators.push(`{ marker: [${operator.marker[0]}, ${operator.marker[1]}] range: { start: ${operator.range.start}, end: ${operator.range.end} } }`)
|
1690
|
+
}
|
1691
|
+
chunk_prime.summaries.push(summary_prime)
|
1692
|
+
}
|
1693
|
+
summaries_prime.push(chunk_prime)
|
1694
|
+
}
|
1695
|
+
return summaries_prime
|
1696
|
+
}
|
1697
|
+
show('operators', tidy_summaries(result.expected.summaries), tidy_summaries(result.actual.summaries))
|
1680
1698
|
/*
|
1681
1699
|
const suggestion = suggestAssociationsFix(result.expected.summaries, result.actual.summaries)
|
1682
1700
|
let suggestedFix
|