kellar
v1.0.1
Published
Javascript client for Kellar, the AI powered faker
Downloads
9
Maintainers
Readme
kellarjs - JS client for Kellar
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))