Benchmarks & research

omp-jev

@thejorgg5TypeScriptupdated 2026-09-18runnable

TypeSafe Jev routing for Oh My Pi, with an opt-in checkpoint orchestrator and editable XDG configuration. Requires Bun = 1.3.14 and OMP = 18.2.3.

thejorgg/omp-jev

Where it calls Jev

endpoint: "https://api.typesafe.ai/v1/systemone",

src/config.ts:11

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 src/decisions.ts:16

  1. instructionstrue/false

    How much reasoning effort does the current user task require?

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: {
    instructions: { type: 'boolean', instructions: 'How much reasoning effort does the current user task require?' },
  },
});

from src/decisions.ts:49

  1. instructionstrue/false

    Should this proposed tool operation be blocked before execution under the user's stated authorization?

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: {
    instructions: { type: 'boolean', instructions: 'Should this proposed tool operation be blocked before execution under the user\'s stated authorization?' },
  },
});

from src/decisions.ts:69

  1. instructionstrue/false

    What should the main agent do at this attempted stop?

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: {
    instructions: { type: 'boolean', instructions: 'What should the main agent do at this attempted stop?' },
  },
});

Other projects in this category