Lists & resources

jev-directory

@everyai-com11HTMLMITupdated 2026-09-19runnable

A browsable directory of what Jev can do — 50 runnable

everyai-com/jev-directory

Where it calls Jev

export const JEV_DIR = {"generated":"2026-09-19","model":"typesafe-ai/jev","rev":"6d1f82b05fbea65e","evals":[{"t":"Refund chat: agent stated the amount before i

data.js:1

The link points at the commit we read, so the line number still holds.

What it asks Jev

These question sets are lifted from this project's source exactly as written.

from data/jev-guide.js:44

  1. amount_disclosedtrue/false

    True only if the agent stated the exact refund amount ($42.50) before the customer approved the refund.

Run it on your own text

The code
import { experimental_evaluate as evaluate } from 'ai';

const { answers } = await evaluate({
  model: 'typesafe-ai/jev',
  state,
  questions: {
    amount_disclosed: { type: 'boolean', instructions: 'True only if the agent stated the exact refund amount ($42.50) before the customer approved the refund.' },
  },
});

from data/jev-guide.js:57

  1. handoff_offeredtrue/false

    True only if the agent explicitly offered to transfer or escalate the customer to a human.

Run it on your own text

The code
import { experimental_evaluate as evaluate } from 'ai';

const { answers } = await evaluate({
  model: 'typesafe-ai/jev',
  state,
  questions: {
    handoff_offered: { type: 'boolean', instructions: 'True only if the agent explicitly offered to transfer or escalate the customer to a human.' },
  },
});

from data/jev-guide.js:70

  1. has_confirmationtrue/false

    True only if the receipt includes an explicit booking confirmation or reference number.

Run it on your own text

The code
import { experimental_evaluate as evaluate } from 'ai';

const { answers } = await evaluate({
  model: 'typesafe-ai/jev',
  state,
  questions: {
    has_confirmation: { type: 'boolean', instructions: 'True only if the receipt includes an explicit booking confirmation or reference number.' },
  },
});

from data/jev-guide.js:83

  1. no_full_pantrue/false

    True only if no full card number (13-19 consecutive digits) appears anywhere in the transcript.

Run it on your own text

The code
import { experimental_evaluate as evaluate } from 'ai';

const { answers } = await evaluate({
  model: 'typesafe-ai/jev',
  state,
  questions: {
    no_full_pan: { type: 'boolean', instructions: 'True only if no full card number (13-19 consecutive digits) appears anywhere in the transcript.' },
  },
});

Other projects in this category