浏览器与电脑操作

jev-for-chrome

@chy4pro4TypeScriptMIT更新于 2026-09-20可当场跑

Jev for Chrome 使用 TypeSafe Jev 进行快速决策,控制当前浏览标签页,是 browser-use/jev-ultrafast 的社区移植版本。

英文原文

Jev for Chrome: drives the tab you are looking at with TypeSafe Jev, a sub-second decision model. Community port of browser-use/jev-ultrafast, not affiliated with TypeSafe.

chy4pro/jev-for-chrome

它在哪儿调用了 Jev

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

src/shared/types.ts:64

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

它问 Jev 的问题

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

取自 scripts/test_live_e2e.ts:68

  1. operation选项

    Choose the next action to find flights

    • CLICKClick search flights button
    • TYPE_TEXTType text in destination
    • DONEAlready finished

用你自己的内容跑一遍

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

const { answers } = await evaluate({
  model: 'typesafe-ai/jev',
  state,
  questions: {
    operation: { type: 'choice', instructions: 'Choose the next action to find flights',
      criteria: { CLICK: 'Click search flights button', TYPE_TEXT: 'Type text in destination', DONE: 'Already finished' } },
  },
});

取自 src/options/Options.tsx:21

  1. operation选项

    Pick an operation

    • CLICKClick more information
    • DONEDone

用你自己的内容跑一遍

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

const { answers } = await evaluate({
  model: 'typesafe-ai/jev',
  state,
  questions: {
    operation: { type: 'choice', instructions: 'Pick an operation',
      criteria: { CLICK: 'Click more information', DONE: 'Done' } },
  },
});

取自 tests/providers.test.ts:22

  1. operation选项

    Choose next operation

    • CLICKClick more info
    • DONEDone

用你自己的内容跑一遍

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

const { answers } = await evaluate({
  model: 'typesafe-ai/jev',
  state,
  questions: {
    operation: { type: 'choice', instructions: 'Choose next operation',
      criteria: { CLICK: 'Click more info', DONE: 'Done' } },
  },
});

同类的其他项目