AI 藍圖審查
Human → AIAI 檢查結構完整性與法規符合性,工程師進行最終核准。
5 個節點 · 5 條連接construction
agenthumansystem
視覺化
上傳藍圖human
建築師上傳結構圖與規格說明。
↓sequential→ AI 結構分析
AI 結構分析agent
檢查載重計算、材料規格與結構完整性。
↓sequential→ 法規符合性檢查
法規符合性檢查system
對照當地建築法規、分區規定與安全標準進行驗證。
↓sequential→ 工程師審查
工程師審查human
持照結構工程師審查 AI 的發現並簽署核可。
↓conditional→ 發出核准文件
↓fallback→ AI 結構分析
發出核准文件api
產生蓋章核准文件供申請建照使用。
uc-blueprint-review.osop.yaml
osop_version: "1.0"
id: "ai-blueprint-review"
name:"AI 藍圖審查"
description:"AI 檢查結構完整性與法規符合性,工程師進行最終核准。"
nodes:
- id: "upload_blueprints"
type: "human"
subtype: "input"
name: "上傳藍圖"
description: "建築師上傳結構圖與規格說明。"
- id: "structural_analysis"
type: "agent"
subtype: "llm"
name: "AI 結構分析"
description: "檢查載重計算、材料規格與結構完整性。"
security:
risk_level: "high"
- id: "code_compliance"
type: "system"
name: "法規符合性檢查"
description: "對照當地建築法規、分區規定與安全標準進行驗證。"
- id: "engineer_review"
type: "human"
subtype: "review"
name: "工程師審查"
description: "持照結構工程師審查 AI 的發現並簽署核可。"
security:
approval_gate: true
- id: "approve"
type: "api"
subtype: "rest"
name: "發出核准文件"
description: "產生蓋章核准文件供申請建照使用。"
edges:
- from: "upload_blueprints"
to: "structural_analysis"
mode: "sequential"
- from: "structural_analysis"
to: "code_compliance"
mode: "sequential"
- from: "code_compliance"
to: "engineer_review"
mode: "sequential"
- from: "engineer_review"
to: "approve"
mode: "conditional"
when: "review.approved == true"
- from: "engineer_review"
to: "structural_analysis"
mode: "fallback"
label: "Revisions required"