0.0.5 • Published 10 months ago

prefai v0.0.5

Weekly downloads
-
License
MIT
Repository
-
Last release
10 months ago

PrefAI Node.js Library

The PrefAI Node.js Library enables applications coded in node.js to interface with the PrefAI API.

It is not recommended to use this on a web client, as it would leak your API key.

Installation

Install with:

npm install prefai

Usage

The library needs an API key, which you get on your pref.ai developer account.

export PREFAI_API_KEY=<YOUR_SECRET_KEY>

We can now add a user record like this:

const PrefAI = require('prefai');

const apiKey = process.env.PREFAI_API_KEY;
const prefaiClient = new PrefAI(apiKey);

// Add record
prefaiClient.addRecord({
  user_email: "test@pref.ai",
  user_action: "What's a spicy appetizer you'd recommend for a BBQ with 6 people?",
});

For more information and next steps, read the quickstart.

0.0.5

10 months ago

0.0.4

11 months ago

0.0.3

11 months ago

0.0.2

11 months ago

0.0.1

11 months ago