Socket
Socket
Sign inDemoInstall

@neoxr/nlp

Package Overview
Dependencies
0
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @neoxr/nlp

Simple and light NLP system without library


Version published
Weekly downloads
3
decreased by-85.71%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Natural Language Processing

Simple and light NLP system without library

How to use ??

A little documentation I hope you understand this

nlp.add([type], [message])
nlp.answer([type], [message])
nlp.reactor([type], [reactor]) // choose "random" or "score"
nlp.rmModel([type])
nlp.rmUser([type], [message])
nlp.rmAssistant([type], [message])
Example

This is an example of how you use this module

const { NLP } = require('@neoxr/nlp')
const nlp = new NLP({
   contain: true // if 'true' is case sensitive
})

nlp.add('greeting', 'hi bro')
nlp.add('greeting', 'hello')
nlp.answer('greeting', 'Hello, how can I help you?')
nlp.answer('greeting', 'Yeah im here')
nlp.answer('greeting', 'Iya, ada yang bisa saya bantu?')
nlp.reactor('greeting', 'random')

nlp.add('introduce', 'who are you')
nlp.add('introduce', 'whats name')
nlp.answer('introduce', 'i\'m is a simple NLP model')
nlp.answer('introduce', 'i\'m is a NLP model test')
nlp.reactor('introduce', 'score')

console.log(nlp.process('hi, who you really are?'))

Result :

{
  user: 'hi, who you really are?',
  assistant: "i'm is a simple NLP model",
  scores: [
    { answer: "i'm is a simple NLP model", score: '24.0' },
    { answer: "i'm is a NLP model test", score: '17.4' }
  ],
  parent: {
    type: 'introduce',
    reactor: 'score',
    assistant: [ "i'm is a simple NLP model", "i'm is a NLP model test" ]
  }
}

Keywords

FAQs

Last updated on 23 Mar 2024

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc