意图

意图路由

用 Jev 结构化决策,将用户请求快速路由到正确工作流。

Choice · 意图识别

意图识别AI 路由

商品推荐

购物、对比、适不适合。

客服

订单、退货、退款、物流。

其他

闲聊或意图不清。

这次发给 Jev

点运行时,站点把这份 JSON 发到 POST /api/playground。运行需要登录。

POST /api/playground
{
  "state": "我想退掉上周买的鞋。",
  "questions": {
    "intent": {
      "type": "choice",
      "instructions": "Route this user message to the correct workflow.",
      "criteria": {
        "product_recommendation": "Shopping, comparison, or product fit",
        "customer_support": "Orders, returns, refunds, shipping, or account help",
        "other": "General chat or unclear intent"
      }
    }
  }
}