0.1.0 • Published 5 years ago

maslow v0.1.0

Weekly downloads
7
License
ISC
Repository
github
Last release
5 years ago

Maslow NPM version Build Status

High level abstraction of maslow pyramid of needs, for use with AI

Installation

$ npm install --save maslow

Usage

const {Maslow} = require('maslow');
let pyramidStage = 'physiological';
let trainingData = [
    {
        "phrase": "cannot breathe",
        "need": "air"
    },
    {
        "phrase": "need to drink",
        "need": "water"
    },
    {
        "phrase": "need to eat",
        "need": "food"
    }
];
let person = new Maslow(pyramidStage, trainingData);

See the test.js for example of function calls to the library

Tests

Run node test.js. If you get no errors and see the full scenario text play out then everything is fine.

License

ISC © Wade Penistone

0.1.0

5 years ago

0.0.8

6 years ago

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago