Quick Start

Get up and running with One-ADN in 5 minutes

Quick Start Guide

Get started with One-ADN in just a few minutes. This guide will walk you through the essential steps to join the decentralized AI network.

Prerequisites#

Before you begin, ensure you have:

  • A computer with a modern GPU (NVIDIA recommended)
  • Node.js 18+ installed
  • Docker (optional, for containerized deployment)
  • An internet connection

Step 1: Create an Account#

First, create your One-ADN account:

bash
# Visit the registration page
open https://one-adn.io/register

Or use the CLI:

bash
npm install -g @one-adn/cli
one-adn auth login

Step 2: Download the Node Application#

Download the One-ADN node application for your operating system:

bash
# Using npm
npm install -g @one-adn/node

# Or using the installer
curl -fsSL https://one-adn.io/install.sh | bash

Step 3: Configure Your Node#

Create a configuration file:

bash
one-adn init

This creates a one-adn.config.json file with default settings:

json
{
  "nodeId": "auto",
  "gpuEnabled": true,
  "maxMemory": "8GB",
  "network": {
    "port": 7545,
    "discoveryEnabled": true
  }
}

Step 4: Start Your Node#

Launch your node and join the network:

bash
one-adn start

You should see output similar to:

One-ADN Node v1.0.0 Node ID: adn-node-abc123 GPU: NVIDIA RTX 4090 (24GB) Status: Connected to network Peers: 47 nodes discovered Ready to process AI requests...

Step 5: Make Your First AI Request#

Test your setup with a simple chat request:

bash
curl -X POST http://localhost:7545/v1/chat/completions \
  -H "Content-Type: application/json" \
  -d '{
    "model": "llama-3.1-70b",
    "messages": [
      {"role": "user", "content": "Hello! Tell me about One-ADN."}
    ]
  }'

Next Steps#

Now that you have One-ADN running, explore:

Need Help?#