1.0.1 • Published 4 years ago

kellar v1.0.1

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

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))