jev-spam-eval
zero-shot spam classification with Jev `Boolean` questions, benchmarked against TF-IDF baselines.
它做什么判断
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 CHOICE + NOUL decision. Read the source to confirm.
CHOICE 调用长什么样
这是该提问类型的通用骨架,不是这个项目的真实代码。
from typesafe import TypeSafe
ts = TypeSafe() # reads TYPESAFE_API_KEY
result = ts.evaluate(
state=page_state,
questions={
"next_action": {
"type": "choice",
"options": ["click", "scroll", "type", "done"],
"instructions": "What should the agent do next?",
}
},
)
action = result["next_action"] # the chosen option
confidence = result["next_action_confidence"]更多内容审核项目
Jev Moderation BotDiscord bot that scores incoming messages for phishing, spam, and social engineering with Jev and drives a four-stage escalation ladder, injecting pardoned messages back into context as verified-safe precedent.mastra-jev-moderationMastra input processor that asks Jev a `Boolean` "must this message be blocked?" plus a category `Choice` in one request, aborting the turn at 0.7 and failing open behind a deadline and circuit breaker; in production it blocked 9/9 hostile and 0/49 real messages at ~0.4 s median, about 4× cheaper than an LLM moderator.Jev Chat for Twitchbring-your-own-key Chrome extension that reads a Twitch channel's chat over the anonymous IRC WebSocket, asks Jev one category `Choice` per message in batches of 20, and shows a second column of only the messages matching a chosen intent (helpful, questions, funny, feedback); about 504 input tokens per message, roughly $0.15 per hour on a 2-message-per-second chat and $0.76 per hour at 50 per second.profanity-checkerCloudflare Worker that asks Jev `Noul` for literal profanity in text or usernames and a second `Noul` for phonetic or look-alike disguise (`a55h0le`, `mike_hunt`); the threshold, `max()` policy, JSON response, and OpenAPI schema live in Worker code and the endpoint is callable from other Workers via service bindings.