0.0.2 • Published 11 months ago

jarvis-kb-node v0.0.2

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

Installing

Package manager

Using npm:

$ npm install jarvis-kb-node

Using yarn:

$ yarn add jarvis-kb-node

Once the package is installed, you can import the library using import:

import { JarvisKB } from 'jarvis-kb-node';

Example

import { JarvisKB } from 'jarvis-kb-node';

(async () => {
  const client = new JarvisKB({
    secretKey: 'your-secret-key',
    publicKey: 'your-public-key',
  });

  await client.initialize();

  const thread = await client.thread.createThread();
  console.log(thread);
})();

License

MIT

0.0.2

11 months ago

0.0.1

12 months ago