Agent 工具

dsh-jev

@buberlo3TypeScriptMIT更新于 2026-09-20可当场跑

基于Jev的DeepSeek Harness决策层。

英文原文

Jev-powered decision layer for DeepSeek Harness

buberlo/dsh-jev

它在哪儿调用了 Jev

import type { EntryType, NoulResponse, Questions, Question, ResultFor, ScoreResponse, Usage } from '@typesafe-ai/sdk'

packages/jev-core/src/assessment.ts:13

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

它问 Jev 的问题

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

取自 examples/standalone-game/src/index.ts:147

  1. is_impossible是/否

    Is the requested action impossible in the current world state?

用你自己的内容跑一遍

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

const { answers } = await evaluate({
  model: 'typesafe-ai/jev',
  state,
  questions: {
    is_impossible: { type: 'boolean', instructions: 'Is the requested action impossible in the current world state?' },
  },
});

取自 scripts/packaging-test.mjs:113

  1. q是/否

    Is this working?

用你自己的内容跑一遍

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

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

同类的其他项目