0.0.2 • Published 11 months ago
jarvis-kb-node v0.0.2
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);
})();