基础设施

Nemotron_Jev

@pst21549HTML更新于 2026-09-18可当场跑

Nemotron Diffusion Decision Lab 是一个用于扩散决策研究的实验平台。

英文原文

Nemotron Diffusion Decision Lab

pst2154/Nemotron_Jev

它在哪儿调用了 Jev

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

app/server.py:46

链接指向我们抓取当天的那个 commit,行号是准的。

它问 Jev 的问题

下面是从这个项目源码里原样取出来的 question 组合。

取自 tests/live_scoring.mjs:4

  1. route选项

    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. urgent是/否

    Is the issue urgent and business blocking?

  3. severity打分

    How severe is the issue?

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

用你自己的内容跑一遍

代码
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'] },
  },
});

同类的其他项目