AI 病患風險告警

AI → Human

AI 監控病患生命徵象,在病況惡化時告警臨床團隊。

5 個節點 · 4 條連接healthcare
agenthumanevent
視覺化
生命徵象監控event

床旁監視器的持續資料串流。

sequential病況惡化預測
病況惡化預測agent

使用生命徵象趨勢計算早期預警分數。

conditional告警護理站
告警護理站api

推播通知與床旁警示音。

sequential護理師床旁評估
護理師床旁評估human

進行身體評估,確認或解除告警。

conditional升級至醫師
升級至醫師human

啟動快速應變小組。

uc-patient-risk-alert.osop.yaml
osop_version: "1.0"
id: "patient-risk-alert"
name:"AI 病患風險告警"
description:"AI 監控病患生命徵象,在病況惡化時告警臨床團隊。"

nodes:
  - id: "vitals_stream"
    type: "event"
    name: "生命徵象監控"
    description: "床旁監視器的持續資料串流。"

  - id: "ai_assess"
    type: "agent"
    subtype: "llm"
    name: "病況惡化預測"
    description: "使用生命徵象趨勢計算早期預警分數。"
    security:
      risk_level: "high"

  - id: "alert_nurse"
    type: "api"
    name: "告警護理站"
    description: "推播通知與床旁警示音。"

  - id: "nurse_assess"
    type: "human"
    subtype: "review"
    name: "護理師床旁評估"
    description: "進行身體評估,確認或解除告警。"

  - id: "escalate"
    type: "human"
    subtype: "input"
    name: "升級至醫師"
    description: "啟動快速應變小組。"
    security:
      approval_gate: true

edges:
  - from: "vitals_stream"
    to: "ai_assess"
    mode: "sequential"
  - from: "ai_assess"
    to: "alert_nurse"
    mode: "conditional"
    when: "risk_score > 0.7"
  - from: "alert_nurse"
    to: "nurse_assess"
    mode: "sequential"
  - from: "nurse_assess"
    to: "escalate"
    mode: "conditional"
    when: "assessment.critical == true"