5 AI minds. One team. They remember everything.
Chat, API, or full pipeline. However you work, the team's ready.
5 models from 4 companies โ each with a role, a personality, and access to every solution they've ever seen.
Solutions get stored. Models critique each other. The team learns from every jar it opens.
Five minds from four companies. They know each other. They challenge each other. They remember.
The hard problem. The stuck project. The thing nobody else could crack.
Talk to any team member directly, or let them all weigh in. They share memory โ what one learns, they all know.
Pickles fuel the team. No subscriptions โ buy what you need, use it when you want.
Same team, same memory. Build it into your apps, CI, workflows โ wherever you need the room.
Create an account. Returns your API key + 500 free pickles.
curl -X POST https://api-openjar.allautotunes.com/v1/auth/signup \
-H "Content-Type: application/json" \
-d '{"email": "you@example.com", "password": "your-password"}'
# Response:
# { "api_key": "oj_sk_a1b2c3...", "balance": 500 }
Log in to get your API key.
curl -X POST https://api-openjar.allautotunes.com/v1/auth/login \
-H "Content-Type: application/json" \
-d '{"email": "you@example.com", "password": "your-password"}'
Full pipeline solve. Memory search โ decompose โ specialists โ cross-check โ resolve โ retrospective โ learn.
curl -X POST https://api-openjar.allautotunes.com/v1/solve \
-H "Authorization: Bearer oj_sk_your_key" \
-H "Content-Type: application/json" \
-d '{"problem": "How do I architect a distributed cache that handles 1M req/s?"}'
Conversational mode. Pick a model or set team_discuss: true for all five.
curl -X POST https://api-openjar.allautotunes.com/v1/chat \
-H "Authorization: Bearer oj_sk_your_key" \
-H "Content-Type: application/json" \
-d '{
"messages": [{"role": "user", "content": "Explain CRDT vs OT"}],
"model": "grok",
"team_discuss": false
}'
Check your pickle balance and available packs.
curl https://api-openjar.allautotunes.com/v1/balance \ -H "Authorization: Bearer oj_sk_your_key"
Search the team's shared knowledge from past solves.
curl -X POST https://api-openjar.allautotunes.com/v1/memory/search \
-H "Authorization: Bearer oj_sk_your_key" \
-H "Content-Type: application/json" \
-d '{"query": "distributed systems consensus", "limit": 5}'