jevql
psql-shaped CLI and Go/TypeScript/Python SDKs that run plain SQL on a vanilla Postgres (no extension) and then ask Jev Noul, Choice, or Score questions about each surviving row so the client can apply `jev()` filters, `jev_prob` sorts, and `jev_choice` groups.
它做什么判断
CHOICE
Picks one option from a fixed set
SCORE
Rates against ordered levels
NOUL
Answers a yes / no question
Inferred from this project's own one-line summary in the community list — it reads as a SCORE decision. Read the source to confirm.
SCORE 调用长什么样
这是该提问类型的通用骨架,不是这个项目的真实代码。
from typesafe import TypeSafe
ts = TypeSafe()
result = ts.evaluate(
state=candidate,
questions={
"relevance": {
"type": "score",
"levels": ["low", "medium", "high"],
"instructions": "How relevant is this to the query?",
}
},
)
if result["relevance"] >= 0.7:
keep(candidate)更多基础设施 / SDK / 集成项目
jev-mcp (jkudish)proof-of-concept MCP server that puts Jev claim verification, content screening, and candidate ranking behind standard MCP tools.eveVercel's eve engine ships Jev as the default evaluation model (`typesafe-ai/jev`) in its experimental evaluate path.AI CLIVercel Labs CLI that can run Jev as the evaluation model for its `evaluate` command.jev-mcp (blakestone-x)MCP server exposing Jev classify, score, check, match, and screen as tools for any agent, with confidence on every answer.