AI 內容生成
Human → AI人工提供簡報,AI 產生草稿,人工審查並反覆修改。
5 個節點 · 5 條連接marketing
agenthuman
視覺化
創意簡報human
使用者提供主題、語氣、受眾及限制條件。
↓sequential→ 生成草稿
生成草稿agent
AI 根據簡報產生初稿。
↓sequential→ 編輯審查
編輯審查human
編輯審閱、標注,並要求修改。
↓conditional→ 修改草稿
↓conditional→ 發佈
修改草稿agent
AI 整合回饋並重新生成。
↓loop→ 編輯審查
發佈api
將核准的內容推送至 CMS。
uc-content-generation.osop.yaml
osop_version: "1.0"
id: "ai-content-generation"
name:"AI 內容生成"
description:"人工提供簡報,AI 產生草稿,人工審查並反覆修改。"
nodes:
- id: "brief"
type: "human"
subtype: "input"
name: "創意簡報"
description: "使用者提供主題、語氣、受眾及限制條件。"
- id: "generate"
type: "agent"
subtype: "llm"
name: "生成草稿"
description: "AI 根據簡報產生初稿。"
security:
risk_level: "low"
- id: "human_review"
type: "human"
subtype: "review"
name: "編輯審查"
description: "編輯審閱、標注,並要求修改。"
- id: "revise"
type: "agent"
subtype: "llm"
name: "修改草稿"
description: "AI 整合回饋並重新生成。"
- id: "publish"
type: "api"
subtype: "rest"
name: "發佈"
description: "將核准的內容推送至 CMS。"
edges:
- from: "brief"
to: "generate"
mode: "sequential"
- from: "generate"
to: "human_review"
mode: "sequential"
- from: "human_review"
to: "revise"
mode: "conditional"
when: "review.decision == 'revise'"
- from: "revise"
to: "human_review"
mode: "loop"
label: "Iterate until approved"
- from: "human_review"
to: "publish"
mode: "conditional"
when: "review.decision == 'approve'"