基础设施

simple-jev

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

将任意开源模型转换为分类器或jev端点。

英文原文

Turn any open model into a classifier/jev endpoint

featherless-ai/simple-jev

它在哪儿调用了 Jev

@router.post("/v1/systemone", include_in_schema=False)

hf-server/hf_server.py:676

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

它问 Jev 的问题

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

取自 website/playground.mjs:2

  1. refund是/否

    Does the customer explicitly ask for money back?

  2. spam是/否

    Is this message unsolicited promotional spam?

用你自己的内容跑一遍

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

const { answers } = await evaluate({
  model: 'typesafe-ai/jev',
  state,
  questions: {
    refund: { type: 'boolean', instructions: 'Does the customer explicitly ask for money back?' },
    spam: { type: 'boolean', instructions: 'Is this message unsolicited promotional spam?' },
  },
});

同类的其他项目