评测与研究
jev-browse 是一个非官方项目,与 TypeSafe 或 Vercel 无关。
jev-browse is an unofficial project and isn't affiliated with TypeSafe or Vercel.
import { TypeSafeClient } from "@typesafe-ai/sdk";链接指向我们抓取当天的那个 commit,行号是准的。
下面是从这个项目源码里原样取出来的 question 组合。
done是/否Is `current_page` the page that `goal` asks to reach?
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`?' },
},
});