评测与研究
TypeSafe Jev 路由,用于 Oh My Pi,支持可选的 checkpoint 编排器和可编辑的 XDG 配置,需 Bun 1.3.14 和 OMP 18.2.3。
TypeSafe Jev routing for Oh My Pi, with an opt-in checkpoint orchestrator and editable XDG configuration. Requires Bun = 1.3.14 and OMP = 18.2.3.
endpoint: "https://api.typesafe.ai/v1/systemone",链接指向我们抓取当天的那个 commit,行号是准的。
下面是从这个项目源码里原样取出来的 question 组合。
instructions是/否How much reasoning effort does the current user task require?
import { experimental_evaluate as evaluate } from 'ai';
const { answers } = await evaluate({
model: 'typesafe-ai/jev',
state,
questions: {
instructions: { type: 'boolean', instructions: 'How much reasoning effort does the current user task require?' },
},
});instructions是/否Should this proposed tool operation be blocked before execution under the user's stated authorization?
import { experimental_evaluate as evaluate } from 'ai';
const { answers } = await evaluate({
model: 'typesafe-ai/jev',
state,
questions: {
instructions: { type: 'boolean', instructions: 'Should this proposed tool operation be blocked before execution under the user\'s stated authorization?' },
},
});instructions是/否What should the main agent do at this attempted stop?
import { experimental_evaluate as evaluate } from 'ai';
const { answers } = await evaluate({
model: 'typesafe-ai/jev',
state,
questions: {
instructions: { type: 'boolean', instructions: 'What should the main agent do at this attempted stop?' },
},
});