#21 Jev
TypeSafe AIが新たなモデル「Jev」を公開しました。
Introduction - TypeSafe AI
Jev is TypeSafe’s flagship model and the first System One model. Send state and typed questions; get structured answers your code can use directly.

これは従来のチャット型モデルのように、会話の続きをトークンで生成するものではなく、選択や分類に特化したモデルになります。
使うときは、Chat Completions APIやResponses APIを呼び出すように、POST /v1/systemone というエンドポイントにパラメータを送信します。
- 入力:
- 判断に使う状態・コンテキスト、質問の型、判断基準・選択肢。
- 出力:
- 質問の型に応じた選択結果、評価、確率、自信度の数値など。
curl -X POST https://api.typesafe.ai/v1/systemone \
-H "Authorization: Bearer $TYPESAFE_API_KEY" \
-H "Content-Type: application/json" \
-d @- <<'EOF'
{
"state": "Hi, I've been trying to connect my Stripe account for 3 days and it keeps failing. I'm losing sales. Please help ASAP.",
"model": "jev-latest",
"questions": {
"urgency": {
"type": "noul",
"instructions": "Does this message express urgency?"
}
}
}
EOF自由なテキストを生成するAPIではなく、AIはこの選択・判断のみを行います。
JevのインターフェースはLLMの推論ループでツールを選択するところに近いので、これを使ったエージェントのデモが話題になっています。
例えば、スーパーマリオやボードゲームをプレイしたり、ドローンシミュレーターやブラウザ上のウェブページを操作したりする動画があります。
