
jevJev 是 TypeSafe 在 2026 年 9 月 15 日发布的 System One 决策模型。它不生成文字:你发过去应用当前的 state(字符串、JSON 对象或数组)和一组以你自定义名字为键、带类型的问题,它对每个问题各返回一个答案 —— choice 从最多 255 个带说明的选项里挑一个,score 把 state 放到你描述的 2 到 10 级量表上,noul 返回一句话为真的概率 —— 每个答案都附完整的概率分布和置信度。所有问题针对同一个 state 并行求值,多加几个问题几乎不影响响应时间。在 apimodels 上端点是 POST https://api.apimodels.app/v1/systemone,请求和响应与 TypeSafe 官方逐字一致,所以 TypeSafe 官方的 Python SDK 只改 base_url 和 key 就能跑。输入每百万 token $0.05(官方标价 $0.042)、输出免费,按 token 精确计费、没有每次最低收费,调用失败不收钱。它替代的是分类、路由、工单分诊、打分这类流水线里的大模型调用;置信度低于你设定阈值的样本,仍然可以交给大模型。
Jev 不生成文字。你把应用当前的 state 和一组带类型的问题发过去,它对每个问题各返回一个答案,附完整的概率分布和置信度。所有问题针对同一个 state 并行求值。请求和响应与 TypeSafe 官方 API 完全一致 —— 官方 SDK 只改 base_url 和 key。
Authorization: Bearer YOUR_API_KEY。不是 /v1/chat/completions,OpenAI SDK 指过来用不了。
2026-09-22 实发的请求:一个工单,两个问题(选队列 + 是否紧急)。
curl https://api.apimodels.app/v1/systemone \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "jev",
"state": "Support ticket: I was charged twice for my September invoice and need one of the payments refunded.",
"questions": {
"queue": {
"type": "choice",
"instructions": "Which support queue should handle this ticket?",
"criteria": {
"billing": "Payments, invoices, charges and refunds",
"bug": "Something in the product is broken",
"account_access": "Login, password or permission problems",
"other": "Anything else"
}
},
"urgent": {
"type": "noul",
"instructions": "The customer needs a response within the hour."
}
}
}'
# 385 input tokens billed at $0.05 per 1M = $0.00001925; output is free按问题 id 返回;choice 带完整概率分布和置信度,noul 是 0–1 的数;只有 input_tokens 计费。
{
"model": "jev-1.13.0",
"answers": {
"queue": {
"type": "choice",
"choice": "billing",
"confidence": 1.0,
"probabilities": { "billing": 1.0, "bug": 0.0, "account_access": 0.0, "other": 0.0 }
},
"urgent": { "type": "noul", "noul": 0.29 }
},
"usage": { "input_tokens": 385, "output_tokens": 63 }
}TypeSafe 官方 SDK,只改 base_url 和 key。
# pip install typesafe-sdk (TypeSafe's official SDK: only base_url and the key change)
import os
from typesafe_sdk import Choice, Noul, TypeSafeClient
with TypeSafeClient(
base_url="https://api.apimodels.app",
api_key=os.environ["APIMODELS_API_KEY"],
) as client:
result = client.system_one(
state="Support ticket: I was charged twice for my September invoice and need one of the payments refunded.",
questions={
"queue": Choice(
instructions="Which support queue should handle this ticket?",
criteria={
"billing": "Payments, invoices, charges and refunds",
"bug": "Something in the product is broken",
"account_access": "Login, password or permission problems",
"other": "Anything else",
},
),
"urgent": Noul(instructions="The customer needs a response within the hour."),
},
)
print(result.choices["queue"].choice) # billing
print(result.nouls["urgent"].noul) # a probability, e.g. 0.29const res = await fetch("https://api.apimodels.app/v1/systemone", {
method: "POST",
headers: {
"Authorization": `Bearer ${process.env.APIMODELS_API_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({
model: "jev",
state: "Support ticket: I was charged twice for my September invoice and need one of the payments refunded.",
questions: {
queue: {
type: "choice",
instructions: "Which support queue should handle this ticket?",
criteria: {
billing: "Payments, invoices, charges and refunds",
bug: "Something in the product is broken",
account_access: "Login, password or permission problems",
other: "Anything else",
},
},
urgent: { type: "noul", instructions: "The customer needs a response within the hour." },
},
}),
});
const { answers, usage } = await res.json();
console.log(answers.queue.choice, answers.queue.confidence); // billing 1.0
console.log(answers.urgent.noul); // 0.29
console.log(usage.input_tokens); // 385 — the only thing billed| type | 你给什么 | 返回什么 |
|---|---|---|
| choice | instructions + criteria:最多 255 个「选项名: 说明」 | choice(选中的选项名)、confidence、probabilities(每个选项的概率) |
| score | instructions + criteria:2–10 级量表,每级一句说明 | score(所在等级)、confidence、probabilities(每级的概率) |
| noul | instructions:一句要判断真伪的陈述 | noul:该陈述为真的概率(0–1) |
发 state 和带类型的问题,拿回带概率和置信度的答案,不生成文字
choice 从最多 255 个选项里挑一个,score 把 state 放到 2–10 级量表上,noul 返回一句话为真的概率
输入每百万 token $0.05,输出免费,按 token 计费、没有每次最低收费;失败不收费
POST /v1/systemone,请求响应完全一致;官方 SDK 只改 base_url 和 key
Jev 是由 TypeSafe 提供的大语言模型 API。Jev 是 TypeSafe 在 2026 年 9 月 15 日发布的 System One 决策模型。它不生成文字:你发过去应用当前的 state(字符串、JSON 对象或数组)和一组以你自定义名字为键、带类型的问题,它对每个问题各返回一个答案 —— choice 从最多 255 个带说明的选项里挑一个,score 把 state 放到你描述的 2 到 10 级量表上,noul 返回一句话为真的概率 —— 每个答案都附完整的概率分布和置信度。所有问题针对同一个 state 并行求值,多加几个问题几乎不影响响应时间。在 apimodels 上端点是 POST https://api.apimodels.app/v1/systemone,请求和响应与 TypeSafe 官方逐字一致,所以 TypeSafe 官方的 Python SDK 只改 base_url 和 key 就能跑。输入每百万 token $0.05(官方标价 $0.042)、输出免费,按 token 精确计费、没有每次最低收费,调用失败不收钱。它替代的是分类、路由、工单分诊、打分这类流水线里的大模型调用;置信度低于你设定阈值的样本,仍然可以交给大模型。 通过 APIMODELS 平台,您可以使用统一的 API 接口调用该模型,按量计费、价格透明。当前定价:Input: $0.05, Output: $0.00 per 1M tokens。
构建智能对话系统,自动回答用户问题,提升客户服务效率。
自动撰写文章、邮件、广告文案等文本内容,提高内容产出效率。
辅助代码编写、调试和代码审查,加速软件开发流程。
理解和分析非结构化数据,提取关键信息并生成报告摘要。
Jev 通过 APIMODELS 平台调用,当前定价:Input: $0.05, Output: $0.00 per 1M tokens。按量计费,用多少付多少。
在 APIMODELS 注册账号并获取 API Key,然后通过我们的统一 API 端点调用即可。我们提供详细的 API 文档和 cURL、Python、Node.js 代码示例。
APIMODELS 通过聚合平台提供与官方相同的 Jev 模型。我们提供统一的 API 接口,无需分别注册各平台账号,一个 API Key 即可调用所有模型。
不是。Jev 是决策模型:你发一个 state(字符串、JSON 对象或数组)和一组带类型的问题,它对每个问题返回一个答案,附完整的概率分布和置信度 —— choice 从你给的带说明的选项里挑一个,score 把 state 放到你描述的 2 到 10 级量表上,noul 给出一句话为真的概率。没有生成文字、没有提示词、也没有流式输出。
输入每百万 token $0.05,输出免费;TypeSafe 官方标价是输入每百万 token $0.042,输出同样免费。我们按上游报回来的实际输入 token 数扣费,没有每次最低收费,调用失败不收钱。多出的那一点买到的是:一把 key、一个余额通吃站内所有模型,不用另开 TypeSafe 账号。
POST https://api.apimodels.app/v1/systemone,带 Authorization: Bearer YOUR_API_KEY,body 是 {"model":"jev","state":...,"questions":{...}}。请求和响应与 TypeSafe 官方 API 完全一致,所以 TypeSafe 官方的 Python SDK 把 base_url 设成 https://api.apimodels.app、换上 apimodels 的 key 就能用。把 OpenAI SDK 指过来是不行的 —— 它不是 chat completion。
当你要的输出是一个标签、一个等级或一个是否概率,而不是一段文字的时候:工单路由、内容分类、线索打分、审核标记、功能开关。Jev 一次调用并行回答所有问题,返回可以直接设阈值的概率,而且输出免费,成本只是大模型调用的一个零头。需要写出来的东西仍然交给大模型,Jev 置信度低于阈值的样本也可以转给它。
在 APIMODELS,Jev 与 60+ 个模型共用一个 API Key、一个余额,所以选型只看合不合适,不存在锁定。它支持 Decision Model、Probabilities、Output Free、TypeSafe SDK Compatible,你可以在价格和能力上把它和其它大语言模型模型对比,换模型只需改一个模型名字符串——无需新账号、无需重新对接。所有大语言模型模型与实时价格见 apimodels.app/models。
Jev 支持:Decision Model、Probabilities、Output Free、TypeSafe SDK Compatible。完整参数与调用方式见 APIMODELS 的 API 文档。
可以。APIMODELS 提供可直接访问的统一 API,一个 API Key 即可调用 Jev,无需分别注册官方账号、也无需自行处理官方接口的网络访问。
我们支持 Stripe(Visa、Mastercard 等国际信用卡)和支付宝付款。充值后积分即时到账。