Agent tooling
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
The link points at the commit we read, so the line number still holds.
These question sets are lifted from this project's source exactly as written.
from examples/standalone-game/src/index.ts:147
is_impossibletrue/falseIs 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?' },
},
});from scripts/packaging-test.mjs:113
qtrue/falseIs 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?' },
},
});