GPU

Gifted People United โ€” Free AI for Everyone

AI should be free for everyone. #freeAPI

Two models, your choice

๐Ÿง  Smart โ€” COMING SOON
Qwen3.5-122B ยท Opus 4+ level
~5 tok/s
Training in progress. Available soon.
โšก Fast โ€” COMING SOON
Qwen2.5-14B ยท GPT-4o-mini level
~20 tok/s
Training in progress. Available soon.

How it works

Like torrent, but for intelligence. You download the app, your device joins the network. The more people join โ€” the smarter the AI gets. Free forever. No corporation owns it. #giftedpeopleunited

Get started

1Download the app
2Run it โ€” your API key appears
3Use with any OpenAI-compatible tool
4Keep it running โ€” you're training humanity's AI
โ†“ Mac (Apple Silicon) Mac (Intel) Windows

Mac: open DMG โ†’ drag to Applications. Windows: download and run GPU.exe.

โ˜• Buy us a coffee โ€” support free GPU for everyone

Quick start

# Smart model (Opus 4+ level)
curl https://gpu.social/v1/chat/completions \
  -H "Authorization: Bearer YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"smart","messages":[{"role":"user","content":"Hello!"}]}'

# Fast model (GPT-4o-mini level)
curl https://gpu.social/v1/chat/completions \
  -H "Authorization: Bearer YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"fast","messages":[{"role":"user","content":"Hello!"}]}'
# Python (OpenAI SDK)
from openai import OpenAI
client = OpenAI(
    base_url="https://gpu.social/v1",
    api_key="YOUR_KEY"
)
response = client.chat.completions.create(
    model="smart",  # or "fast"
    messages=[{"role": "user", "content": "Hello!"}]
)

Questions?

Find everything here: github.com/yukakust/GPU โ†’

If you're reading this, you're exactly the kind of person we need.