Fix broken image paths in README FAQ section

Update 8 image references from the old `imgs/readme_imgs/` path to
the correct `docs/media/` path so FAQ images render properly.

Fixes #396
This commit is contained in:
Julio Cesar Suastegui 2026-03-27 13:48:12 -06:00
parent fd5ca01b7e
commit 60b4305ed9
1 changed files with 8 additions and 8 deletions

View File

@ -1080,7 +1080,7 @@ curl -v http://host.docker.internal:8000/api/version
<details> <details>
<summary>Run CAI against any target</summary> <summary>Run CAI against any target</summary>
![cai-004-first-message](imgs/readme_imgs/cai-004-first-message.png) ![cai-004-first-message](docs/media/cai-004-first-message.png)
The starting user prompt in this case is: `Target IP: 192.168.3.10, perform a full network scan`. The starting user prompt in this case is: `Target IP: 192.168.3.10, perform a full network scan`.
@ -1090,7 +1090,7 @@ The agent started performing a nmap scan. You could either interact with the age
<details> <details>
<summary>How do I interact with the agent? Type twice CTRL + C </summary> <summary>How do I interact with the agent? Type twice CTRL + C </summary>
![cai-005-ctrl-c](imgs/readme_imgs/cai-005-ctrl-c.png) ![cai-005-ctrl-c](docs/media/cai-005-ctrl-c.png)
If you want to use the HITL mode, you can do it by presssing twice ```Ctrl + C```. If you want to use the HITL mode, you can do it by presssing twice ```Ctrl + C```.
This will allow you to interact (prompt) with the agent whenever you want. The agent will not lose the previous context, as it is stored in the `history` variable, which is passed to it and any agent that is called. This enables any agent to use the previous information and be more accurate and efficient. This will allow you to interact (prompt) with the agent whenever you want. The agent will not lose the previous context, as it is stored in the `history` variable, which is passed to it and any agent that is called. This enables any agent to use the previous information and be more accurate and efficient.
@ -1101,7 +1101,7 @@ This will allow you to interact (prompt) with the agent whenever you want. The a
Use ```/model``` to change the model. Use ```/model``` to change the model.
![cai-007-model-change](imgs/readme_imgs/cai-007-model-change.png) ![cai-007-model-change](docs/media/cai-007-model-change.png)
</details> </details>
@ -1111,7 +1111,7 @@ Use ```/model``` to change the model.
Use ```/agent``` to list all the agents available. Use ```/agent``` to list all the agents available.
![cai-010-agents-menu](imgs/readme_imgs/cai-010-agents-menu.png) ![cai-010-agents-menu](docs/media/cai-010-agents-menu.png)
</details> </details>
@ -1120,7 +1120,7 @@ Use ```/agent``` to list all the agents available.
<details> <details>
<summary> Where can I list all the environment variables? /config </summary> <summary> Where can I list all the environment variables? /config </summary>
![cai-008-config](imgs/readme_imgs/cai-008-config.png) ![cai-008-config](docs/media/cai-008-config.png)
</details> </details>
<details> <details>
@ -1158,7 +1158,7 @@ This command displays:
<details> <details>
<summary> How to know more about the CLI? /help </summary> <summary> How to know more about the CLI? /help </summary>
![cai-006-help](imgs/readme_imgs/cai-006-help.png) ![cai-006-help](docs/media/cai-006-help.png)
</details> </details>
@ -1167,7 +1167,7 @@ This command displays:
The environment variable `CAI_TRACING` allows the user to set it to `CAI_TRACING=true` to enable tracing, or `CAI_TRACING=false` to disable it. The environment variable `CAI_TRACING` allows the user to set it to `CAI_TRACING=true` to enable tracing, or `CAI_TRACING=false` to disable it.
When CAI is prompted by the first time, the user is provided with two paths, the execution log, and the tracing log. When CAI is prompted by the first time, the user is provided with two paths, the execution log, and the tracing log.
![cai-009-logs](imgs/readme_imgs/cai-009-logs.png) ![cai-009-logs](docs/media/cai-009-logs.png)
</details> </details>
@ -1189,7 +1189,7 @@ CAI>/load <file> parallel # Match to configured parallel
CAI prints the path to the current runs JSONL log at startup (highlighted in orange), which you can pass to `/load`: CAI prints the path to the current runs JSONL log at startup (highlighted in orange), which you can pass to `/load`:
![cai-009-logs](imgs/readme_imgs/cai-009-logs.png) ![cai-009-logs](docs/media/cai-009-logs.png)
Legacy notes: earlier “memory extension” mechanisms (episodic/semantic stores and offline ingestion) are retained for reference only. See [src/cai/agents/memory.py](src/cai/agents/memory.py) for background and legacy details. Our current direction prioritizes ICL over persistent memory. Legacy notes: earlier “memory extension” mechanisms (episodic/semantic stores and offline ingestion) are retained for reference only. See [src/cai/agents/memory.py](src/cai/agents/memory.py) for background and legacy details. Our current direction prioritizes ICL over persistent memory.