mojojojo mojojojo

Vector search

Managed vector retrieval with durable collections, exact search, and accelerated performance search behind one API.

Create a retrieval project

The same mojojojo account and API key owns your source documents, indexes, usage, and credits. No separate database account.

API

curl https://mojojojo.cc/v1/vector/projects/vec_PROJECT/upsert \
  -H "Authorization: Bearer mj_live_…" -H "Content-Type: application/json" \
  -d '{"documents":[{"id":"guide","text":"Mojo compiles fast kernels."}]}'

curl https://mojojojo.cc/v1/vector/projects/vec_PROJECT/search \
  -H "Authorization: Bearer mj_live_…" -H "Content-Type: application/json" \
  -d '{"query":"fast compiled code","limit":10}'

Choose exact or performance search

Exact projects provide predictable exhaustive retrieval. Performance projects automatically use accelerated search as collections grow.