
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
@botonic/plugin-intent-classification
Advanced tools
Botonic Plugin Intent Classification uses the trained models to predict the intent of the input text.
From your project, install the plugin by using the following command:
npm install @botonic/plugin-intent-classification
Note: Windows users should first use the command
npm install --global --production windows-build-tools --vs2015
The plugin must be required in src/plugins.js and, the locales of the trained models must be defined in their options.
export const plugins = [
{
id: 'intent-classification',
resolve: require('@botonic/plugin-intent-classification'),
options: {
locales: ['en', 'es'],
},
},
]
You can now create new routes in src/routes.js depending on the intent information added by this plugin:
import BuyProduct from './actions/buy-product'
import NotFound from './actions/not-found'
import ReturnProduct from './actions/return-product'
import Start from './actions/start'
export const routes = [
{ input: i => i.intents[0].confidence < 0.7, action: NotFound },
{ intent: 'Greeting', action: Start },
{ intent: 'BuyProduct', action: BuyProduct },
{ intent: 'ReturnProduct', action: ReturnProduct },
]
FAQs
## What does this plugin do?
The npm package @botonic/plugin-intent-classification receives a total of 10 weekly downloads. As such, @botonic/plugin-intent-classification popularity was classified as not popular.
We found that @botonic/plugin-intent-classification demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.