Cuanto AI

Client-facing AI API for Cuanto Labs. /v1/systemone is a drop-in, wire-compatible mirror of TypeSafe's Jev API — point the official TypeSafe SDK at this host and it just works. Everything else under /v1/* proxies to OpenRouter.

Endpoints

curl

curl https://<host>/v1/systemone \
  -H "Authorization: Bearer cl_live_<your key>" \
  -H "Content-Type: application/json" \
  -d '{
    "state": "Customer says their payment failed twice today.",
    "model": "jev-1.13.0",
    "questions": { "is_urgent": { "type": "noul", "instructions": "Is this urgent?" } }
  }'

TypeSafe SDK

import { TypeSafeClient } from "typesafe";

const client = new TypeSafeClient({
  apiKey: "cl_live_<your key>",
  baseURL: "https://<host>",
});