Lists & resources
Open-source projects that provably call Jev, TypeSafe AI's System One model. Every entry links to the line of code that proves it. Refreshed daily.
const ENDPOINT = process.env.TYPESAFE_BASE_URL ?? 'https://api.typesafe.ai/v1/systemone';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.
is_projecttrue/falseIs this a real software project that uses Jev, rather than a fork, a stub, or a page about Jev?
substancescoreHow substantial is this project?
0 — Placeholder or a few lines of throwaway code1 — A working single-purpose demo2 — A maintained library or application with documentationimport { experimental_evaluate as evaluate } from 'ai';
const { answers } = await evaluate({
model: 'typesafe-ai/jev',
state,
questions: {
is_project: { type: 'boolean', instructions: 'Is this a real software project that uses Jev, rather than a fork, a stub, or a page about Jev?' },
substance: { type: 'score', instructions: 'How substantial is this project?',
criteria: ['Placeholder or a few lines of throwaway code', 'A working single-purpose demo', 'A maintained library or application with documentation'] },
},
});