UNPKG

tpmkms

Version:

Reusable libraries for Entodicton, a natural language to json converter

55 lines (40 loc) 1.76 kB
# The Programmable Mind Knowledge Modules This is a library of the Programmable Mind knowledge modules that can be reused. ## Knowledge Modules The list of knowledge modules can be found <a href='http://thinktelligence.com/kms'>here</a> ## Usage The basic usage is redefine the api functions to point to your data. Then all of the queries that are supported can be performed against your data. Here is an example of how to do that The first step is to include the client and the knowledge module project called EKMS ``` const { reports } = require('tpmkms') ``` `reports` is the knowledge module for making repots off data. By default the km will work with test data. You can run it the same as any other Entodicton config. For example, this works against the shared server ``` reports.process('list the models').then( (response) => { console.log(response.generated[0]) }) ``` The result of running this would be ``` dev@devlaptop:~/code/thinktelligence/kms$ node use_reports.js ╔══════════╤══════════╗ ║ name │ supplier ║ ╟──────────┼──────────╢ ║ tiger │ tamiya ║ ╟──────────┼──────────╢ ║ spitfire │ dragon ║ ╚══════════╧══════════╝ ``` In order to customize the output to your domain you would need to redefine the api to access your data ``` const apiTemplate = (marker, testData) => { return { getName: ... getTypes: ... getAllProducts: ... getByTypeAndCost: ... productGenerator: ... } } ``` Video showing how to use the TPMKMS package can be found <a href='http://thinktelligence.com/videos'>here</a>