訂房收益異常偵測
AI → HumanAI 偵測異常訂房模式並告警收益管理員進行定價調整。
5 個節點 · 5 條連接travel
eventagenthuman
視覺化
訂房事件串流event
預訂、取消與修改的即時資料串流。
↓sequential→ AI 收益模式分析
AI 收益模式分析agent
分析訂房速度、平均日房價與住房率是否符合預測。
↓sequential→ 異常分類
↓timeout→ 收益管理員告警
異常分類system
標記需求激增、異常取消潮或房價一致性問題。
↓conditional→ 收益管理員告警
收益管理員告警api
儀表板告警,附帶異常詳情與建議行動。
↓sequential→ 調整定價策略
調整定價策略human
收益管理員審查 AI 建議並調整房價或房型庫存。
uc-booking-anomaly.osop.yaml
osop_version: "1.0"
id: "booking-anomaly"
name:"訂房收益異常偵測"
description:"AI 偵測異常訂房模式並告警收益管理員進行定價調整。"
nodes:
- id: "booking_stream"
type: "event"
name: "訂房事件串流"
description: "預訂、取消與修改的即時資料串流。"
- id: "revenue_analysis"
type: "agent"
subtype: "llm"
name: "AI 收益模式分析"
description: "分析訂房速度、平均日房價與住房率是否符合預測。"
- id: "anomaly_detect"
type: "system"
name: "異常分類"
description: "標記需求激增、異常取消潮或房價一致性問題。"
- id: "manager_alert"
type: "api"
name: "收益管理員告警"
description: "儀表板告警,附帶異常詳情與建議行動。"
- id: "pricing_decision"
type: "human"
subtype: "review"
name: "調整定價策略"
description: "收益管理員審查 AI 建議並調整房價或房型庫存。"
security:
approval_gate: true
edges:
- from: "booking_stream"
to: "revenue_analysis"
mode: "sequential"
- from: "revenue_analysis"
to: "anomaly_detect"
mode: "sequential"
- from: "anomaly_detect"
to: "manager_alert"
mode: "conditional"
when: "anomaly.detected == true"
- from: "manager_alert"
to: "pricing_decision"
mode: "sequential"
- from: "revenue_analysis"
to: "manager_alert"
mode: "timeout"
timeout_sec: 120
label: "Escalate if analysis exceeds 2min"