定价
面向高频决策:仅为输入付费,输出免费。预付 token 用于 jevtypesafe.org 上的托管 API 与工具——不是官方 TypeSafe 密钥。
- 输入 token
- $0.25–$0.42/M
- 输出 token
- 免费
- 单次决策(均值)
- ≈$0.0004
- 延迟
- 70–500ms
购买余额——约一分钟上手
选择套餐、刷卡支付,余额即时到账。账户有效期间不过期。在「账户」创建 API key,即可调用 /api/v1/decide。
Loading bot check…
Stripe 安全结账 · token 即时入账 · 在 账户管理密钥与账单。
调用托管 decide API
预付并在「账户」创建 jv_live_ 密钥后,向 /api/v1/decide 发起 POST。同一余额也用于现成工具。
curl https://jevtypesafe.org/api/v1/decide \
-H "Authorization: Bearer $JEV_API_KEY" \
-H "Content-Type: application/json" \
-d '{"state":"Customer: my card was charged twice",
"questions":{"topic":{"type":"choice",
"instructions":"Route this message",
"criteria":{"billing":"money","bug":"broken","account":"login"}}}}'import os, requests
r = requests.post(
"https://jevtypesafe.org/api/v1/decide",
headers={"Authorization": f"Bearer {os.environ['JEV_API_KEY']}"},
json={
"state": "Customer: my card was charged twice",
"questions": {
"topic": {
"type": "choice",
"instructions": "Route this message",
"criteria": {"billing": "money", "bug": "broken", "account": "login"},
}
},
},
)
print(r.json())const r = await fetch("https://jevtypesafe.org/api/v1/decide", {
method: "POST",
headers: {
Authorization: `Bearer ${process.env.JEV_API_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({
state: "Customer: my card was charged twice",
questions: {
topic: {
type: "choice",
instructions: "Route this message",
criteria: { billing: "money", bug: "broken", account: "login" },
},
},
}),
});
console.log(await r.json());实际含义
输入 token 单价为 $0.42/百万 时,典型分诊类决策约 $0.0004(与公开基准一致)。输出免费,因此一次调用里多问几个问题仍然便宜。
- 1,000 次决策 ≈ $0.40
- 100 万次决策 ≈ $400
- 匿名访客可免费真调 API 运行工具 5 次(免注册)
- 注册账户每月赠送 50k 输入 token
- 批量 CSV/TXT(仅登录)——每次上传最多 25 行,按实际输入 token 扣费。匿名试用仍为单次运行。
你买到的是什么
本站托管 decide API(jv_live_ 密钥)与产品工具的预付输入 token。上游 TypeSafe/Cloudflare 密钥留在服务器。本站为非官方社区托管,与 TypeSafe AI 无隶属关系。