Gifted People United โ Free AI for Everyone
AI should be free for everyone. #freeAPI
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
Mac: open DMG โ drag to Applications. Windows: download and run GPU.exe.
# 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!"}] )
Find everything here: github.com/yukakust/GPU โ
If you're reading this, you're exactly the kind of person we need.