Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
This is a library of entodicton knowledge modules that can be reused. A description of the contents can be found here
The list of knowledge modules can be found here
The basic usage is redefine the interface 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 { store } = require('ekms')
store
is the knowledge module that describe how to interpret utterances about the store domain. 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
url = "http://184.67.27.82"
key = "6804954f-e56d-471f-bbb8-08e3c54d9321"
store.server(url, key)
store.process('list the products').then( (response) => {
//console.log(JSON.stringify(response, null, 2))
console.log(response.generated[0])
})
The result of running this would be
dev@devlaptop:~/code/thinktelligence/kms$ node use_store.js
[ 'the products are pants1 and shirt1' ]
In order to customize the output to your domain you would need to redefine the interface to access your data
const testData = {
types: [ 'tanks', 'planes' ],
products: [
{ marker: 'product', isInstance: true, type: 'tanks', name: 'Tamiya Tiger', cost: 9, id: 1 },
{ marker: 'product', isInstance: true, type: 'planes', name: 'Meng P-47', cost: 15, id: 2 },
]
}
const interface = {
getTypes: () => testData.types,
getAllProducts: () => testData.products,
getByTypeAndCost: ({type, cost, comparison}) => {
results = []
testData.forEach( (product) => {
if (product.type == type && comparison(product.cost)) {
results.append(product)
}
})
return results
},
productGenerator: [({context}) => context.marker == 'product' && context.isInstance, ({g, context}) => `${context.name}`]
};
store.interface = interface
url = "http://184.67.27.82"
key = "6804954f-e56d-471f-bbb8-08e3c54d9321"
store.server(url, key)
store.process('list the products').then( (response) => {
//console.log(JSON.stringify(response, null, 2))
console.log(response.generated[0])
})
After doing this the results of running would be
dev@devlaptop:~/code/thinktelligence/kms$ node use_store.js
[ 'the products are Tamiya Tiger and Meng P-47' ]
Sample code that runs this example can be found here
FAQs
Reusable libraries for Entodicton, a natural language to json converter
The npm package ekms receives a total of 107 weekly downloads. As such, ekms popularity was classified as not popular.
We found that ekms demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.