Models
Compare
Decision Model Preview
Compare
Qwen logo

Decision Model Preview

decision-model-previewllms.txt
Qwen
New
Alibaba Cloud has launched the decision model decision-model-preview. This structured decision model is designed for high-frequency business judgments; it can concurrently perform classification, binary decisions, and scoring based on text or business state, and returns probability distributions and confidence levels. It is suitable for scenarios such as ticket routing, content moderation, agent routing, and result verification. Free for a limited time.

Pricing

  • Input Tokens: $0 /M tokens
  • Output Tokens: $0 /M tokens

Input Modalities

  • Text

Context length

  • 64K tokens

Providers

Alibaba Cloud decision-model-preview
Pricing$0$0
Context64K
Max output0
Latency-
Throughput-
Uptime
0.00% uptime 2 days ago
0.00% uptime yesterday
100.00% uptime today

Performance for decision-model-preview

Uptime is the percentage of requests that succeeded over the past 72 hours. AIHubMix continuously monitors every provider and automatically retries with the next-best provider when one returns an error or responds too slowly; Latency is total round-trip time (lower is better); Throughput is how fast the model writes (tokens per second, higher is better).

Uptime
Loading...
Latency
Loading...
Throughput
Loading...

Try this model

Python
import os
import requests

# Structured decision: POST /v1/systemone — every question is evaluated in parallel and in
# isolation against the same state, and comes back typed. No text generation, nothing to parse.
# The answers{} map is keyed by your own question names; each answer holds its value under a
# key named after its type:
#   noul   -> { type, noul }                                      probability of "yes", 0..1
#   choice -> { type, choice, probabilities, confidence }          choice is one of your criteria keys
#   score  -> { type, score, legend, probabilities, confidence }   legend maps level index -> description
# usage carries input_tokens / output_tokens.
url = "https://aihubmix.com/v1/systemone"
headers = {
    "Authorization": "Bearer " + os.environ["AIHUBMIX_API_KEY"],
    "Content-Type": "application/json",
}
payload = {
      "model": "decision-model-preview",
      "state": "Hi, I have been trying to connect my Stripe account for 3 days and it keeps failing. I am losing sales. Please help ASAP.",
      "questions": {
        "department": {
          "type": "choice",
          "instructions": "Which team should handle this",
          "criteria": {
            "billing": "Payment or subscription issues",
            "technical": "Bugs or integration problems",
            "sales": "Pricing or account questions"
          }
        },
        "frustration": {
          "type": "score",
          "instructions": "How frustrated the customer appears",
          "criteria": [
            "Calm, just stating facts",
            "Frustrated but civil",
            "Very angry, strong language"
          ]
        },
        "is_urgent": {
          "type": "noul",
          "instructions": "The message conveys urgency or time-sensitivity"
        }
      }
    }

response = requests.post(url, headers=headers, json=payload)
response.raise_for_status()

data = response.json()
for name, answer in data["answers"].items():
    kind = answer["type"]
    print(name, kind, answer[kind], answer.get("confidence"))
print("usage:", data.get("usage"))

Frequently asked questions

What is Decision Model Preview?

Alibaba Cloud has launched the decision model decision-model-preview. This structured decision model is designed for high-frequency business judgments; it can concurrently perform classification, binary decisions, and scoring based on text or business state, and returns probability distributions and confidence levels. It is suitable for scenarios such as ticket routing, content moderation, agent routing, and result verification. Free for a limited time.