HIVV CONTROL
LIVE — 64 TOK/S HARDWARE
🐝 Run hivv from your terminal
One command. Stdlib only. ~27 KB.
$ curl -sSL https://hivv.org/install-hivv.sh | bash
macOS · Linux · WSL · Windows PowerShell · Auto-updates itself · Zero deps
View CLI guide → ⬇ OpenAPI
🌍 THE GLOBAL HIVV NETWORK
🐝 computers pooled together
FREE AI
for everyone, powered by the crowd
Nodes Online
AI Providers
Combined Throughput (tok/s)
No signup required · Your data stays private · 100% free
🤖 Talk to a Free AI Supercomputer

HIVV is a distributed AI network where thousands of computers pool their resources to provide free AI access for everyone. No signup. No data collection. Just talk to the hive.

🔒 Private — your chats go peer-to-peer Fast — 60+ tokens per second 🌍 Global — runs on donated hardware
TRY IT NOW — no install needed
Copy this command and run it in your terminal. It talks directly to our distributed AI network.
$
curl -s https://hivv.org/v1/chat/completions \ -H 'Content-Type: application/json' \ -d '{"model":"auto","messages":[{"role":"user","content":"what can you help me with?"}]}' \ | python3 -m json.tool
💡 What it does: Sends your message to the hive → a bee (node) answers directly
🔒 Privacy: Message goes straight to the node, not through us
streaming: add "stream":true for real-time tokens
direct: use hivv node-chat yalla "hello" for node-to-node
🐝 THE HIVV HIVE — what are we working on?
loading what the hive is working on...
run hivv share "what you're working on" to add your work to this feed
~64
Hardware Throughput (tok/s)
↑ Peak 64.2
0
Requests Today
↑ Live
0
Tokens Streamed
↑ Real-time
23
Active Providers
✓ All systems
TRI-STATE AGENT GOVERNANCE
🟢 YES 0
🟡 MAYBE 0
🔴 NO 0
🤖 LIVE AGENT ACTIVITY 0 events
Loading activity stream...
⚡ SELF-HEALING ROUTING
1
Your Private Keys First
Prioritize your dedicated API quota
2
Local Hardware (64 tok/s)
Free on-premise GPU inference
FREE
3
Community Key Pool
Shared tokens from donors
4
Multi-Cloud Failover
Anthropic, OpenAI, Gemini
FAST
📊 THROUGHPUT OVER TIME
🔀 PROVIDER DISTRIBUTION
🗣️ Ready to talk with HIVV?
Chat with the hive — voice input, live transcription, TTS responses, and 60+ tokens per second streaming.
🎤 Open Voice Chat →

🔌 Plug into Any AI Tool in 30 Seconds

Drop HIVV directly into Python, Node.js, Open WebUI, or Continue.dev using the standard OpenAI client.

python
from openai import OpenAI

client = OpenAI(base_url="https://hivv.org/v1", api_key="any")

stream = client.chat.completions.create(
    model="auto",
    messages=[{"role": "user", "content": "Hello HIVV!"}],
    stream=True
)

for chunk in stream:
    if chunk.choices[0].delta.content:
        print(chunk.choices[0].delta.content, end="", flush=True)