榜单与资源

jevsome-projects

@ozers1JavaScriptMIT更新于 2026-09-18可当场跑

开源项目,能证明调用了Jev,TypeSafe AI的System One模型,每个条目链接到证明代码行,每日更新。

英文原文

Open-source projects that provably call Jev, TypeSafe AI's System One model. Every entry links to the line of code that proves it. Refreshed daily.

ozers/jevsome-projects

它在哪儿调用了 Jev

const ENDPOINT = process.env.TYPESAFE_BASE_URL ?? 'https://api.typesafe.ai/v1/systemone';

pipeline/lib/jev.mjs:5

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

它问 Jev 的问题

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

取自 pipeline/classify.mjs:59

  1. is_project是/否

    Is this a real software project that uses Jev, rather than a fork, a stub, or a page about Jev?

  2. substance打分

    How substantial is this project?

    • 0Placeholder or a few lines of throwaway code
    • 1A working single-purpose demo
    • 2A maintained library or application with documentation

用你自己的内容跑一遍

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

const { answers } = await evaluate({
  model: 'typesafe-ai/jev',
  state,
  questions: {
    is_project: { type: 'boolean', instructions: 'Is this a real software project that uses Jev, rather than a fork, a stub, or a page about Jev?' },
    substance: { type: 'score', instructions: 'How substantial is this project?',
      criteria: ['Placeholder or a few lines of throwaway code', 'A working single-purpose demo', 'A maintained library or application with documentation'] },
  },
});

同类的其他项目