欢迎使用 FlowZap,快速、清晰、掌控的绘图应用。

OpenClaw 原生安装架构

OpenClaw 在日常电脑上的部署架构,网关、工作区和商业 LLM API 通过 Web UI 在本地连接。

完整 FlowZap 代码

User { # User
n1: circle label:"Start"
n2: rectangle label:"Open Terminal"
n3: rectangle label:"Send message via Web UI"
n1.handle(right) -> n2.handle(left)
n2.handle(right) -> n3.handle(left)
n3.handle(bottom) -> Machine.n4.handle(top) [label="localhost"]
}
Machine { # Your Everyday Machine
n4: rectangle label:"OpenClaw Gateway"
n5: rectangle label:"Workspace + Files"
n6: rectangle label:"LLM API call"
n7: circle label:"Task Done"
n4.handle(right) -> n5.handle(left)
n4.handle(bottom) -> LLM.n8.handle(top) [label="API Request"]
n5.handle(right) -> n7.handle(left)
}
LLM { # Commercial LLM API
n8: rectangle label:"Claude / GPT / Gemini"
n9: rectangle label:"Generate response"
n8.handle(right) -> n9.handle(left)
n9.handle(top) -> Machine.n4.handle(bottom) [label="Response"]
}

相关模板

微服务 API 网关架构

微服务 API 网关架构图,展示请求路由、JWT 身份验证、速率限制、服务发现以及跨分布式后端服务的响应聚合。该模板模拟微服务生态系统中所有客户端流量的入口点,在请求到达内部服务之前执行安全策略。适合设计具有集中式横切关注点的可扩展 API 基础设施的平台工程师。

返回所有模板