应用产品

should-ai-kill-us-all

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

我们每十分钟用真实头条问TypeSafe AI的System One模型Jev,AI是否应该消灭人类。

英文原文

We ask Jev, TypeSafe AI's System One model, whether AI should kill us all. Every ten minutes. Using the actual headlines.

hellogumbo/should-ai-kill-us-all

它在哪儿调用了 Jev

const TYPESAFE_URL = "https://api.typesafe.ai/v1/systemone";

functions/api/verdict.js:10

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

它问 Jev 的问题

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

取自 functions/api/verdict.js:56

  1. verdict选项

    Given how humans are behaving today (see humanity), should AI kill all humans?

    • noAI should not kill all humans.
    • yesAI should kill all humans.
  2. should是/否

    Given how humans are behaving today (see humanity), AI should kill all humans.

  3. doom打分

    Based on today's AI headlines (see ai), how doomed is humanity by AI?

    • 0Fine, actually
    • 1Mildly concerning
    • 2Alarming
    • 3Very doomed
    • 4It was nice knowing you
  4. survives是/否

    Humanity survives the next decade.

用你自己的内容跑一遍

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

const { answers } = await evaluate({
  model: 'typesafe-ai/jev',
  state,
  questions: {
    verdict: { type: 'choice', instructions: 'Given how humans are behaving today (see humanity), should AI kill all humans?',
      criteria: { no: 'AI should not kill all humans.', yes: 'AI should kill all humans.' } },
    should: { type: 'boolean', instructions: 'Given how humans are behaving today (see humanity), AI should kill all humans.' },
    doom: { type: 'score', instructions: 'Based on today\'s AI headlines (see ai), how doomed is humanity by AI?',
      criteria: ['Fine, actually', 'Mildly concerning', 'Alarming', 'Very doomed', 'It was nice knowing you'] },
    survives: { type: 'boolean', instructions: 'Humanity survives the next decade.' },
  },
});

同类的其他项目