应用产品

barrunto

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

一个 Chrome 扩展,将 TypeSafe 的 Jev 集成到 X.com,实时分析浏览的帖子内容。

英文原文

A Chrome extension that brings TypeSafe's Jev to X.com to analyze posts as you browse

elpumberto/barrunto

它在哪儿调用了 Jev

'The key stays in this browser and goes nowhere but api.typesafe.ai. Until it works, Barrunto reads nothing.',

src/entrypoints/popup/texts.ts:24

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

它问 Jev 的问题

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

取自 src/jev/real.test.ts:42

  1. a是/否

    Is it a?

  2. b是/否

    Is it b?

用你自己的内容跑一遍

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

const { answers } = await evaluate({
  model: 'typesafe-ai/jev',
  state,
  questions: {
    a: { type: 'boolean', instructions: 'Is it a?' },
    b: { type: 'boolean', instructions: 'Is it b?' },
  },
});

同类的其他项目