0.0.10 • Published 4 years ago

sf-einstein v0.0.10

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

Welcome to SF Einstein!

Javascript library for consuming Salesforce Einstein API as per Documentation

Getting Started

Setup

var sfEinstein = require('sf-einstein');

sfEinstein.setup({
    baseUrl :  'https://api.einstein.ai',
    accountId :  <your_account_id>,
    privateKey :  <your_private_key>
});

Get Token - Documentation

Generates a new token based on the details set in the Setup step

sfEinstein.getToken().then((token) => {
    console.log(token);
});

Datasets

Create a Dataset - Documentation

Asynchronously creates a dataset based either on an URL or a .zip file

Create a Dataset from URL

sfEinstein.createDatasetFromUrl('My Dataset', 'image', 'https://www.path.to/my_file.zip')
.then((response) => {
    console.log(response.id);
});

Create a Dataset from .zip file

var fs = require('fs');

var myDatasetFile = fs.createReadStream('/foo/dataset.zip');
sfEinstein.createDatasetFromZipFile('My Dataset', 'image', myDatasetFile)
.then((response) => {
    console.log(response.id);
});

Get all Datasets - Documentation

Retrieves all Datasets created for current account

sfEinstein.getDatasets()
.then((response) => {
    var datasets = response.data;
    datasets.forEach(dataset => console.log(dataset.name));
});

Get a Dataset - Documentation

Retrieves a specific Dataset

sfEinstein.getDataset('123456')
.then((dataset) => {
    console.log(dataset.name);
});

Delete a Dataset - Documentation

Deletes a specific Dataset

sfEinstein.deleteDataset('123456')
.then((deletion) => {
    console.log(deletion.id);
});

Get Deletion Status - Documentation

Retrieves status of a Dataset deletion

sfEinstein.getDatasetDeletionStatus('Z2JTFBF3A7XKIJC5QEJXMO4HSY')
.then((deletion) => {
    console.log(deletion.status);
});

Training

Get Training Status - Documentation

Returns the status of a model's training process

sfEinstein.getTrainingStatus('X6FKINOA2K33JSCN63RO6J3SQM')
.then((training) => {
    console.log(training.status);
});

Train a Dataset - Documentation

Trains a dataset and creates a model

sfEinstein.trainDataset('Name', '123456')
.then((training) => {
    console.log(training.modelId);
});

Retrain a Dataset - Documentation

Retrains a dataset and updates a model

sfEinstein.retrainDataset('7JXCXTRXTMNLJCEF2DR5CJ46QU')
.then((retraining) => {
    console.log(retraining.status);
});

Predictions

Predict by URL - Documentation

Retrieves a prediction from a model for the image on the url passed

sfEinstein.predictByUrl('123456', 'https://www.path.to/image.jpg')
.then((prediction) => {
    prediction.probabilities.forEach((prob) => {
        console.log(prob.label + ' : ' + prob.probability);
    });
});

Predict by Base64 String - Documentation

Retrieves a prediction from a model for the image decoded into Base64 String

sfEinstein.predictByImageBase64('123456', 'data:image/jpeg;base64,/9j/4RiDRXhpZgAATU0AKgA')
.then((prediction) => {
    prediction.probabilities.forEach((prob) => {
        console.log(prob.label + ' : ' + prob.probability);
    });
});

Predict by Image File - Documentation

Retrieves a prediction from a model for the image file

var fs = require('fs');

var myImage = fs.createReadStream('/foo/bar.jpg');
sfEinstein.predictByImageBase64('123456', myImage)
.then((prediction) => {
    prediction.probabilities.forEach((prob) => {
        console.log(prob.label + ' : ' + prob.probability);
    });
});
0.0.10

4 years ago

0.0.9

4 years ago

0.0.8

4 years ago

0.0.5

4 years ago

0.0.7

4 years ago

0.0.6

4 years ago

0.0.3

4 years ago

0.0.4

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago