评测与研究

jev-browse

@kyrylosyzonenko3JavaScriptMIT更新于 2026-09-17可当场跑

jev-browse 是一个非官方项目,与 TypeSafe 或 Vercel 无关。

英文原文

jev-browse is an unofficial project and isn't affiliated with TypeSafe or Vercel.

kyrylosyzonenko/jev-browse

它在哪儿调用了 Jev

import { TypeSafeClient } from "@typesafe-ai/sdk";

jev-browse.mjs:6

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

它问 Jev 的问题

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

取自 jev-browse.mjs:147

  1. done是/否

    Is `current_page` the page that `goal` asks to reach?

  2. blocked是/否

    Does reaching `goal` from `current_page` require an action listed in `agent.cannot`?

用你自己的内容跑一遍

代码
import { experimental_evaluate as evaluate } from 'ai';

const { answers } = await evaluate({
  model: 'typesafe-ai/jev',
  state,
  questions: {
    done: { type: 'boolean', instructions: 'Is `current_page` the page that `goal` asks to reach?' },
    blocked: { type: 'boolean', instructions: 'Does reaching `goal` from `current_page` require an action listed in `agent.cannot`?' },
  },
});

同类的其他项目