Create and visualize your multi-agent architecture
{
"name": "My Architecture",
"type": "microservices",
"components": [
{
"id": "api-gateway",
"type": "gateway",
"position": {
"x": 100,
"y": 200
},
"label": "API Gateway",
"color": "#dbeafe"
},
{
"id": "user-service",
"type": "service",
"position": {
"x": 300,
"y": 200
},
"label": "User Service",
"color": "#dcfce7"
},
{
"id": "database",
"type": "database",
"position": {
"x": 500,
"y": 200
},
"label": "Database",
"color": "#f0f9ff"
}
],
"connections": [
{
"id": "conn-1",
"from": "api-gateway",
"to": "user-service",
"type": "http",
"name": "Request"
},
{
"id": "conn-2",
"from": "user-service",
"to": "database",
"type": "query",
"name": "GetUser"
}
]
}
• Double-click on components to edit their properties
• Click the + button or connection points to start connections
• Components can connect to themselves (self-connections)
• No limit on the number of connections between components