From b3458a3fa035e76f0553c40629e875eccc755bb6 Mon Sep 17 00:00:00 2001 From: Mery-Sanz Date: Wed, 14 May 2025 13:00:23 +0200 Subject: [PATCH] tree --- docs/cai_architecture.md | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/docs/cai_architecture.md b/docs/cai_architecture.md index 535f17b8..0828d1a7 100644 --- a/docs/cai_architecture.md +++ b/docs/cai_architecture.md @@ -26,9 +26,31 @@ CAI focuses on making cybersecurity agent **coordination** and **execution** lig If you want to dive deeper into the code, check the following files as a start point for using CAI: -If you want to dive deeper into the code, check the following files as a start point for using CAI: +cai +├── benchmarks +├── ci +├── docs +├── examples # Basic use of CAI for start building on your own +├── src +│ └── cai +│ ├── __init__.py +│ ├── agents +│ │ ├── one_tool.py # Agent definitions, one agent per file +│ │ └── patterns +│ ├── cli.py # Entrypoint for CLI +│ ├── prompts +│ ├── repl # CLI aesthetics and commands +│ │ ├── commands +│ │ └── ui +│ ├── sdk # Necessary class for chat completions +│ │ └── agents +│ │ └── model +│ ├── tools # Agent tools +│ │ └──common.py +│ └── util.py # Utility functions +├── tests +└── tools # Usable tools -TODO: files tree ### 🔹 Agent