Agent tooling
ACP and MCP adapter that bridges TypeSafe Jev with any LLM — computer use and typed decisions alongside Codex, Claude, Grok, and OpenCode.
export const TYPESAFE_ENDPOINT = "https://api.typesafe.ai/v1/systemone";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.
refundtrue/falseDoes this request a refund?
teamchoiceWhich team?
billing — Payments, invoices, refunds.technical — Bugs and outages.other — None of the above.import { experimental_evaluate as evaluate } from 'ai';
const { answers } = await evaluate({
model: 'typesafe-ai/jev',
state,
questions: {
refund: { type: 'boolean', instructions: 'Does this request a refund?' },
team: { type: 'choice', instructions: 'Which team?',
criteria: { billing: 'Payments, invoices, refunds.', technical: 'Bugs and outages.', other: 'None of the above.' } },
},
});