Jev 1.13

typesafe/jev-1.13

A structured decision model: it answers named yes/no, choice and score questions about supplied state, each with a calibrated probability. It does not generate text and is not a chat model.

This model is available through the API. It is not currently offered as an agent's reasoning model.

Use through the API
In / out per 1M
Price: $0.042Price: $0
Modalities
Text
Context
66K

Overview

A structured decision model: it answers named yes/no, choice and score questions about supplied state, each with a calibrated probability. It does not generate text and is not a chat model. It is billed from the same balance as every other model and API here, and the price of each call comes back in the response.

Pricing

Prices in USD per million tokens, using your plan when signed in.

MeterPer 1M tokens
InputPrice: $0.042
OutputPrice: $0

Your balance and per-call records come from /v1/credits and /v1/generation.

Use it

Point your client at the gateway and pass this model id. Nothing else changes.

const response = await fetch("https://gateway.agentsky.dev/api/alpha/decisions", {
  method: "POST",
  headers: {
    authorization: `Bearer ${process.env.AGENTSKY_API_KEY}`, // ast_…
    "content-type": "application/json",
  },
  body: JSON.stringify({
    model: "typesafe/jev-1.13",
    state: "The cart shows 3 items and a £0.00 total.",
    questions: {
      broken: { type: "noul", instructions: "Is the page in a broken state?" },
    },
  }),
});

const { answers, usage } = await response.json();
console.log(answers.broken.noul); // 0–1 probability
console.log(usage.cost);          // USD, in the response

Questions