TypeSafe: Jev
Moderationtypesafe/jev-latestTypeSafe Jev 决策模型(非 LLM):对任意 state 按具名问题给出结构化判断(是非 / 单选 / 评分)。两条端点:/v1/decisions(bifrost 口径,题目字段 kind)与 /v1/systemone(TypeSafe 官方口径,题目字段 type,官方 SDK 只需把 base_url 指向 ofox)。输入上限约 32K token;输出计数为答案 token,不计费。
Context Window
33K
Max Output Tokens
4K
Released
2026-09-23
Available Providers
typesafe
Supported Protocols
openai
Providers
typesafe
provider.type: "typesafe"Input Tokens
$0.042/M
Output Tokens
$0/M
Protocols
openai
/v1/decisionsCode Examples
from openai import OpenAIclient = OpenAI(base_url="https://api.ofox.ai/v1",api_key="YOUR_OFOX_API_KEY",)response = client.chat.completions.create(model="typesafe/jev-latest",messages=[{"role": "user", "content": "Hello!"}],)print(response.choices[0].message.content)
Frequently Asked Questions
TypeSafe: Jev on Ofox.ai costs $0.042/M per million input tokens and $0 per million output tokens. Pay-as-you-go, no monthly fees.
TypeSafe: Jev supports a context window of 33K tokens with max output of 4K tokens, allowing you to process large documents and maintain long conversations.
Simply set your base URL to https://api.ofox.ai/v1 and use your Ofox API key. The API is OpenAI-compatible — just change the base URL and API key in your existing code.