decentralized intelligence on solana

Artificial
Decentralized
Intelligence

Alone we're dumb. Together we're ADI.

Your browser powers a decentralized AI. Train models, earn points, own the intelligence.

LEARN MORE
brains online
tasks done
v0.1
adi model
adi network
$ adi status network: ■ online nodes: model: adi-v0.1-base training: chain: solana mainnet $

Interactive map of what ADI knows. Each node is a skill trained by the community. Click to explore.

hover a node to inspect
ca: JCJCNVmNgmv2sTxzYvCDG427Z554MtSTvtdJdnh6pump

MINE

contribute your brain to the network

OFFLINE
0
points
0
tasks
0
streak
rank
webgpu load
0%

LEADERBOARD

top brains in the adi network — real-time

# address points tasks

ADI API

plug decentralized intelligence into your app

POST /v1/chat/completions
// click RUN to query ADI
curl
curl -X POST https://api.adinetwork.tech/v1/chat/completions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "adi-v0.1",
    "messages": [
      {"role": "user", "content": "What is Solana?"}
    ]
  }'
python
import requests

resp = requests.post(
    "https://api.adinetwork.tech/v1/chat/completions",
    headers={"Authorization": "Bearer YOUR_API_KEY"},
    json={
        "model": "adi-v0.1",
        "messages": [
            {"role": "user", "content": "What is Solana?"}
        ]
    }
)
print(resp.json()["choices"][0]["message"]["content"])
javascript
const res = await fetch("https://api.adinetwork.tech/v1/chat/completions", {
  method: "POST",
  headers: {
    "Authorization": "Bearer YOUR_API_KEY",
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
    model: "adi-v0.1",
    messages: [{ role: "user", content: "What is Solana?" }]
  })
});
const data = await res.json();
console.log(data.choices[0].message.content);
adi-v0.1 free during beta
adi-v1.0 (upcoming) pay with SOL

ABOUT

what is adi

ADI is the first community-powered AI on Solana. No corporation builds it — you do. Open your browser, contribute compute, train the model, own the result.

why decentralized

OpenAI, Google, Anthropic — they build AI behind closed doors. They choose what it knows, what it censors, who gets access. ADI is the opposite: trained by thousands, published open-source, owned by no one.

how it works

Your browser contributes GPU power via WebGPU. You complete training tasks — rate AI responses, debug code, fact-check outputs. This is RLHF: the same method OpenAI used to build ChatGPT. Your input shapes the ADI Model. The result: open-source AI, available via chat and API, owned by the community.