Agent 工具
Jevbridge 是一个 ACP 和 MCP 适配器,连接 TypeSafe Jev 与 Codex、Claude、Grok、OpenCode 等任意 LLM,实现计算和类型化决策。
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";链接指向我们抓取当天的那个 commit,行号是准的。
下面是从这个项目源码里原样取出来的 question 组合。
refund是/否Does this request a refund?
team选项Which 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.' } },
},
});