docs: fix diagram box alignment

This commit is contained in:
nogueiraguh
2026-03-26 10:26:43 -03:00
parent ab41a7fbb1
commit eb9e3d3973

View File

@@ -246,16 +246,16 @@ The platform combines security compliance scanning, AI-powered chat with **RAG (
## Architecture ## Architecture
``` ```
+-----------------------------------------------------------+ +--------------------------------------------------------------+
| Docker Compose | | Docker Compose |
| | | |
| +------------------+ +-----------------------------+ | | +-----------------+ +--------------------------------+ |
| | | | | | | | | | | |
| | Nginx |--->| FastAPI Backend | | | | Nginx |---->| FastAPI Backend | |
| | (React SPA) | | (Python 3.12) | | | | (React SPA) | | (Python 3.12) | |
| | :8080 | | 8 workers x 10 threads | | | | :8080 | | 8 workers x 10 threads | |
| | | | | | | | | | | |
| +------------------+ | Agents: | | | +-----------------+ | Agents: | |
| | - Chat (RAG + MCP Tools) | | | | - Chat (RAG + MCP Tools) | |
| | - Terraform (Plan/Apply) | | | | - Terraform (Plan/Apply) | |
| | - CIS Scanner (12 tools) | | | | - CIS Scanner (12 tools) | |
@@ -269,22 +269,21 @@ The platform combines security compliance scanning, AI-powered chat with **RAG (
| | - Terraform CLI 1.14.7 | | | | - Terraform CLI 1.14.7 | |
| | - SQLite (agent.db) | | | | - SQLite (agent.db) | |
| | | | | | | |
| +-----------------------------+ | | +--------------------------------+ |
| | | | | |
| +----------v----------+ | | +-----------v------------+ |
| | agent-data volume | | | | agent-data volume | |
| | /data (SQLite, | | | | /data (SQLite, | |
| | reports, configs, | | | | reports, configs, | |
| | terraform, wallets) | | | | terraform, wallets) | |
| +---------------------+ | | +------------------------+ |
+-----------------------------------------------------------+ +--------------------------------------------------------------+
| |
+----------v-----------+ +------------v-------------+
| Oracle ADB | | Oracle ADB (external) |
| (external) |
| 11 vector tables | | 11 vector tables |
| RAG + embeddings | | RAG + embeddings |
+----------------------+ +--------------------------+
``` ```
--- ---