评测与研究

omp-jev

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

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.

thejorgg/omp-jev

它在哪儿调用了 Jev

endpoint: "https://api.typesafe.ai/v1/systemone",

src/config.ts:11

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

它问 Jev 的问题

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

取自 src/decisions.ts:16

  1. 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?' },
  },
});

取自 src/decisions.ts:49

  1. 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?' },
  },
});

取自 src/decisions.ts:69

  1. 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?' },
  },
});

同类的其他项目