ForcePilot/web/src/assets/icons/subagents.svg
Wenjie Zhang d655cbe640 feat: 添加subagents管理功能
- 实现了应用程序启动期间的理subagents初始化。
- 为subagents的 CRUD 操作和存储库方法创建了单元测试。
- 开发了用于列出、检索、创建、更新和删除子代理的子代理 API 端点。
- 添加了用于在前端管理子代理的 SubAgentsComponent,包括搜索和详细信息视图。
2026-03-24 11:09:44 +08:00

26 lines
645 B
XML

<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<!-- Center agent -->
<circle cx="12" cy="12" r="3" />
<!-- Sub-agents -->
<circle cx="5" cy="5" r="2" />
<circle cx="19" cy="5" r="2" />
<circle cx="5" cy="19" r="2" />
<circle cx="19" cy="19" r="2" />
<!-- Connections -->
<line x1="9.5" y1="9.5" x2="6.5" y2="6.5" />
<line x1="14.5" y1="9.5" x2="17.5" y2="6.5" />
<line x1="9.5" y1="14.5" x2="6.5" y2="17.5" />
<line x1="14.5" y1="14.5" x2="17.5" y2="17.5" />
</svg>