Agent 工具
基于Jev的DeepSeek Harness决策层。
Jev-powered decision layer for DeepSeek Harness
import type { EntryType, NoulResponse, Questions, Question, ResultFor, ScoreResponse, Usage } from '@typesafe-ai/sdk'packages/jev-core/src/assessment.ts:13
链接指向我们抓取当天的那个 commit,行号是准的。
下面是从这个项目源码里原样取出来的 question 组合。
取自 examples/standalone-game/src/index.ts:147
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
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?' },
},
});