
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과 키만 바꾸면 동작합니다. 입력 100만 토큰당 $0.05(TypeSafe 정가는 $0.042), 출력 무료, 호출당 최소 요금 없는 토큰 단위 과금이며 실패한 호출은 과금되지 않습니다. 분류, 라우팅, 티켓 분류, 스코어링 파이프라인에서 LLM 호출을 대체하고, 신뢰도가 임계값 아래인 샘플만 LLM에 넘기면 됩니다.
Jev does not generate text. You send your application state plus a map of typed questions and get one answer per question, with a full probability distribution and a confidence. Every question is evaluated against the same state in parallel. The request and response are identical to TypeSafe's API — the official SDK works with only base_url and the key changed.
Authorization: Bearer YOUR_API_KEY. This is not /v1/chat/completions — an OpenAI SDK pointed here will not work.
A request we actually sent on 2026-09-22: one ticket, two questions (which queue, and is it urgent).
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 freeKeyed by your question ids; choice carries the full distribution and a confidence, noul is a number in 0–1; only input_tokens is billed.
{
"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's official SDK — only base_url and the key change.
# 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 | You provide | You get back |
|---|---|---|
| choice | instructions + criteria: up to 255 "option: description" pairs | choice (the selected option), confidence, probabilities (one per option) |
| score | instructions + criteria: a 2–10 level scale, one description per level | score (the level), confidence, probabilities (one per level) |
| noul | instructions: a statement to judge | noul: the probability the statement is true (0–1) |
state와 타입이 있는 질문을 보내면 생성 텍스트가 아니라 확률과 신뢰도가 붙은 답이 돌아옴
choice는 최대 255개 선택지 중 하나를 고르고, score는 state를 2~10단계 척도에 놓으며, noul은 명제가 참일 확률을 돌려줌
입력 100만 토큰당 $0.05, 출력 무료, 호출당 최소 요금 없는 토큰 단위 과금. 실패한 호출은 무료
POST /v1/systemone, 요청과 응답이 동일. 공식 SDK는 base_url과 키만 바꾸면 됨
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과 키만 바꾸면 동작합니다. 입력 100만 토큰당 $0.05(TypeSafe 정가는 $0.042), 출력 무료, 호출당 최소 요금 없는 토큰 단위 과금이며 실패한 호출은 과금되지 않습니다. 분류, 라우팅, 티켓 분류, 스코어링 파이프라인에서 LLM 호출을 대체하고, 신뢰도가 임계값 아래인 샘플만 LLM에 넘기면 됩니다. APIMODELS 플랫폼을 거치면 통합 API와 투명한 종량 과금으로 이 모델을 호출할 수 있습니다. 현재 가격: Input: $0.05, Output: $0.00 per 1M tokens.
문의에 자동으로 답하는 대화 시스템을 만들어 응대 효율을 높입니다.
기사와 이메일, 광고 카피 같은 글을 자동으로 써서 작업량을 줄입니다.
코드 작성과 디버깅, 리뷰를 도와 개발 속도를 올립니다.
비정형 데이터를 읽어내 핵심을 뽑고 요약 리포트로 정리합니다.
Jev은(는) APIMODELS를 통해 Input: $0.05, Output: $0.00 per 1M tokens에 이용할 수 있습니다. 과금은 종량제라서 생성한 만큼만 냅니다.
APIMODELS에 가입해 API 키를 받고 통합 엔드포인트를 호출하면 됩니다. cURL / Python / Node.js 예제를 담은 상세 문서를 제공합니다.
APIMODELS는 같은 Jev을(를) 집약 플랫폼을 통해 제공합니다. API 인터페이스가 통합되어 있어 공급자마다 계정을 만들 필요가 없고, 키 하나로 모든 모델에 닿습니다.
아닙니다. Jev는 판단 모델입니다. state(문자열, JSON 객체 또는 배열)와 타입이 있는 질문 묶음을 보내면 질문마다 하나의 답을 전체 확률 분포와 신뢰도와 함께 돌려줍니다. choice는 라벨이 붙은 선택지 중 하나를 고르고, score는 state를 직접 정의한 2~10단계 척도 위에 놓으며, noul은 명제가 참일 확률을 줍니다. 생성 텍스트도, 프롬프트도, 스트리밍도 없습니다.
입력은 100만 토큰당 $0.05, 출력은 무료입니다. TypeSafe 정가는 입력 100만 토큰당 $0.042이고 출력은 역시 무료입니다. 상류가 보고한 입력 토큰 수를 그대로 과금하고 호출당 최소 요금이 없으며 실패한 호출은 과금하지 않습니다. 약간의 차액으로 얻는 것은 사이트의 모든 모델과 공유하는 키 하나와 잔액 하나, 그리고 별도의 TypeSafe 계정이 필요 없다는 점입니다.
POST https://api.apimodels.app/v1/systemone에 Authorization: Bearer YOUR_API_KEY를 붙이고 JSON 본문 {"model":"jev","state":...,"questions":{...}}를 보냅니다. 요청과 응답이 TypeSafe API와 동일하므로 TypeSafe 공식 Python SDK는 base_url을 https://api.apimodels.app으로 설정하고 apimodels 키를 넘기면 동작합니다. OpenAI SDK를 이 엔드포인트로 향하게 해도 동작하지 않습니다. chat completion이 아니기 때문입니다.
출력이 문장이 아니라 라벨, 단계, 또는 예/아니오 확률일 때입니다. 티켓 라우팅, 콘텐츠 분류, 리드 스코어링, 검수 플래그, 기능 게이팅 같은 일입니다. Jev는 한 번의 호출로 모든 질문에 병렬로 답하고, 바로 임계값을 적용할 수 있는 확률을 돌려주며, 출력이 무료라서 LLM 호출 비용의 일부만 듭니다. 써야 하는 것은 LLM에 맡기고, 신뢰도가 임계값 아래인 Jev의 답만 LLM에 넘기세요.
APIMODELS에서는 Jev이(가) 60개가 넘는 모델과 같은 API 키, 같은 잔액 위에 나란히 놓입니다. 그래서 선택은 궁합의 문제이지 종속의 문제가 아닙니다. Decision Model、Probabilities、Output Free、TypeSafe SDK Compatible을(를) 지원하며 다른 대규모 언어 모델 모델과 가격·성능을 나란히 놓고 따져볼 수 있습니다. 갈아타기는 모델 이름 문자열 하나만 바꾸면 되고 새 계정도 추가 작업도 필요 없습니다. 대규모 언어 모델 선택지와 실시간 가격은 apimodels.app/models에서 볼 수 있습니다.
Jev은(는) 다음을 지원합니다: Decision Model、Probabilities、Output Free、TypeSafe SDK Compatible. 전체 파라미터와 호출 예제는 APIMODELS 문서를 참고하세요.
네. APIMODELS는 Jev을(를) 하나의 통합 API와 키 한 개로 제공합니다. 공급자별 계정도 필요 없고, 각 공급자의 지역별 네트워크 경로를 직접 챙길 필요도 없습니다.
Stripe(Visa, Mastercard 등 해외 카드)와 Alipay를 지원합니다. 결제 후 잔액은 즉시 반영됩니다.
How to get access, regional availability, and how this model compares with its alternatives.