Getting Started
Installation
To install our package, run the following command in your terminal:*INITIALLY AVAILABLE TO BETA USERS (for now)*
npm install @atlas-ai/core
npm install @atlas-ai/client
Basic Setup
import { ATLAS } from '@atlas-ai/core';
const node = ATLAS.new()
.with_consensus("ELIZA/ZEREBRO")
.with_storage("distributed")
.build();
await node.start();
Usage
Here's a basic example of how to use our package in your project:
import { Client } from '@our-company/package';
const client = new Client();
const result = await client.doSomething();
console.log(result);
For more detailed information, please check out our Components and API Reference sections.