浏览器与电脑操作

fastbrowse

@agent-labs-dev5PythonMIT更新于 2026-09-20可当场跑

fastbrowse 是一个快速浏览器 agent,Jev 从页面内容选择操作,LLM 负责阅读和规划,答案中的每个断言都引用页面内容。

英文原文

A fast browser agent: Jev picks each action from what is on the page, an LLM reads and plans, and every claim in an answer cites a quote from the page.

agent-labs-dev/fastbrowse

它在哪儿调用了 Jev

TYPESAFE_URL = "https://api.typesafe.ai"

src/fastbrowse/clients/typesafe.py:23

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

它问 Jev 的问题

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

取自 tests/clients/test_jev.py:38

  1. partial是/否

    Present?

  2. score是/否

    How much?

用你自己的内容跑一遍

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

const { answers } = await evaluate({
  model: 'typesafe-ai/jev',
  state,
  questions: {
    partial: { type: 'boolean', instructions: 'Present?' },
    score: { type: 'boolean', instructions: 'How much?' },
  },
});

同类的其他项目