Infrastructure

Nemotron_Jev

@pst21549HTMLupdated 2026-09-18runnable

Nemotron Diffusion Decision Lab

pst2154/Nemotron_Jev

Where it calls Jev

if self.path not in ('/v1/chat/completions', '/v1/systemone'): return self.send(404,{'error':'Not found'})

app/server.py:46

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 tests/live_scoring.mjs:4

  1. routechoice

    Which team should handle this? Payment and payout issues belong to billing, including failed payments.

    • billingPayments, payouts, invoices or refunds
    • technicalApplication bugs or infrastructure outages unrelated to payments
  2. urgenttrue/false

    Is the issue urgent and business blocking?

  3. severityscore

    How severe is the issue?

    • 0Minor cosmetic inconvenience
    • 1Some functionality degraded
    • 2Critical business blocking failure

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: {
    route: { type: 'choice', instructions: 'Which team should handle this? Payment and payout issues belong to billing, including failed payments.',
      criteria: { billing: 'Payments, payouts, invoices or refunds', technical: 'Application bugs or infrastructure outages unrelated to payments' } },
    urgent: { type: 'boolean', instructions: 'Is the issue urgent and business blocking?' },
    severity: { type: 'score', instructions: 'How severe is the issue?',
      criteria: ['Minor cosmetic inconvenience', 'Some functionality degraded', 'Critical business blocking failure'] },
  },
});

Other projects in this category