AI 菜單最佳化
Human → AIAI 分析銷售數據與食材成本,提出菜單調整建議。
5 個節點 · 4 條連接food-service
agenthumandb
視覺化
上傳銷售資料human
餐廳上傳 POS 交易紀錄與食材成本資料。
↓sequential→ 分析菜品獲利能力
分析菜品獲利能力agent
計算利潤率、識別表現不佳的品項並偵測季節性趨勢。
↓sequential→ 建議菜單調整
建議菜單調整system
推薦價格調整、下架品項及新菜品定位策略。
↓sequential→ 主廚審查
主廚審查human
主廚評估建議的可行性、品質影響及廚房作業流程。
↓conditional→ 更新 POS 系統
更新 POS 系統api
將核准的菜單變更推送至銷售點系統與線上點餐平台。
uc-menu-optimization.osop.yaml
osop_version: "1.0"
id: "ai-menu-optimization"
name:"AI 菜單最佳化"
description:"AI 分析銷售數據與食材成本,提出菜單調整建議。"
nodes:
- id: "upload_sales"
type: "human"
subtype: "input"
name: "上傳銷售資料"
description: "餐廳上傳 POS 交易紀錄與食材成本資料。"
- id: "ai_profitability"
type: "agent"
subtype: "llm"
name: "分析菜品獲利能力"
description: "計算利潤率、識別表現不佳的品項並偵測季節性趨勢。"
- id: "suggest_changes"
type: "system"
name: "建議菜單調整"
description: "推薦價格調整、下架品項及新菜品定位策略。"
- id: "chef_review"
type: "human"
subtype: "review"
name: "主廚審查"
description: "主廚評估建議的可行性、品質影響及廚房作業流程。"
security:
approval_gate: true
- id: "update_pos"
type: "api"
subtype: "rest"
name: "更新 POS 系統"
description: "將核准的菜單變更推送至銷售點系統與線上點餐平台。"
edges:
- from: "upload_sales"
to: "ai_profitability"
mode: "sequential"
- from: "ai_profitability"
to: "suggest_changes"
mode: "sequential"
- from: "suggest_changes"
to: "chef_review"
mode: "sequential"
- from: "chef_review"
to: "update_pos"
mode: "conditional"
when: "review.approved == true"