Open reproductions

jev_local

@Argos111115Pythonupdated 2026-09-19runnable

Replicating Jev with a local LLM

Argos1111/jev_local

Where it calls Jev

if self.path.split('?',1)[0] != '/v1/systemone':

api_server.py:61

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 tools/verify_api.py:42

  1. binarytrue/false

    Is the state about a refund?

  2. ratingscore

    question

    • 0level
    • 1low
    • 2medium

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: {
    binary: { type: 'boolean', instructions: 'Is the state about a refund?' },
    rating: { type: 'score', instructions: 'question',
      criteria: ['level', 'low', 'medium'] },
  },
});

Other projects in this category