← Все модели

TypeSafe: Jev 1.13NEW

typesafe/jev-1.13
решения

Структурная decision-модель TypeSafe (System One): отправьте состояние и типизированные вопросы — получите вероятностные ответы вместо текста. Маршрутизация, классификация, проверка действий агентов: noul (да/нет), choice (выбор варианта), score (позиция на шкале) — с распределениями и уверенностью. Быстрая и предсказуемая: код ветвится по ответу напрямую, без парсинга свободного текста. Контекст 32K токенов.

Цена запрос / ответ
Контекст
32K
Релиз
18 сент. 2026 г.

Параметры

stateобязательный
questionsобязательный
typenoul · choice · score

Как использовать через API

import requests

r = requests.post(
    "https://api.mixen.ai/v1/decisions",
    headers={"Authorization": "Bearer mxn-..."},
    json={
        "model": "typesafe/jev-1.13",
        "state": "Help! My payouts have been failing for 3 days.",
        "questions": {
            "is_urgent": {
                "type": "noul",
                "instructions": "Does this message convey urgency?",
                "criteria": {"true": "Explicitly time-sensitive",
                             "false": "No urgency expressed"},
            },
            "department": {
                "type": "choice",
                "instructions": "Which team should handle this?",
                "criteria": {"billing": "Payments, invoicing, refunds",
                             "technical": "Bugs, outages, integrations"},
            },
        },
    },
)
answers = r.json()["answers"]
if answers["is_urgent"]["noul"] > 0.8 and answers["department"]["choice"] == "billing":
    escalate_to_billing()

Похожие модели