kellar

Javascript client for Kellar, the AI powered faker


Keywords
faker, fake, data, testing, mock, ai, data science
License
MIT
Install
npm install kellar@1.0.1

Documentation

kellarjs - JS client for Kellar

Image description

Build Status

This is a JavaScript/TypeScript client for Kellar, the AI-powered faker.

With Kellar, you can build AI-driven models of your own data and generate limitless amount of fully realistic synthetic data, tuned just for your own specific use case. Currently, Kellar is in a beta stage and not yet open for public.

For more information, visit www.kellar.ai

Install with:

npm install kellar

Usage:

const Kellar = require('kellar');

// Your API key and id for model
const secrets = {
    apiKey: 'foo',
    modelId: 'bar',
};

const client = new Kellar(secrets);

// Generate 100 rows of data
client.generate(100).then((d) => {
  console.log(d)
}).catch((e) => console.log(e))