Infrastructure
Nemotron Diffusion Decision Lab
if self.path not in ('/v1/chat/completions', '/v1/systemone'): return self.send(404,{'error':'Not found'})The link points at the commit we read, so the line number still holds.
These question sets are lifted from this project's source exactly as written.
routechoiceWhich team should handle this? Payment and payout issues belong to billing, including failed payments.
billing — Payments, payouts, invoices or refundstechnical — Application bugs or infrastructure outages unrelated to paymentsurgenttrue/falseIs the issue urgent and business blocking?
severityscoreHow severe is the issue?
0 — Minor cosmetic inconvenience1 — Some functionality degraded2 — Critical business blocking failureimport { 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'] },
},
});