Skip to content

Commit 5eb5d55

Browse files
Update knowledge base directory path documentation (#2763)
- Changed from ~/.q/knowledge_bases/ to ~/.aws/amazonq/knowledge_bases/ - Default agent uses q_cli_default/ (no alphanumeric suffix) - Custom agents use <agent-name>_<alphanumeric-code>/ format Co-authored-by: Kenneth S. <[email protected]>
1 parent a8a0426 commit 5eb5d55

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/knowledge-management.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ Each agent maintains its own isolated knowledge base, ensuring that knowledge co
177177
Knowledge bases are stored in the following directory structure:
178178

179179
```
180-
~/.q/knowledge_bases/
180+
~/.aws/amazonq/knowledge_bases/
181181
├── q_cli_default/ # Default agent knowledge base
182182
│ ├── contexts.json # Metadata for all contexts
183183
│ ├── context-id-1/ # Individual context storage
@@ -186,13 +186,13 @@ Knowledge bases are stored in the following directory structure:
186186
│ └── context-id-2/
187187
│ ├── data.json
188188
│ └── bm25_data.json
189-
├── my-custom-agent/ # Custom agent knowledge base
189+
├── my-custom-agent_<alphanumeric-code>/ # Custom agent knowledge base
190190
│ ├── contexts.json
191191
│ ├── context-id-3/
192192
│ │ └── data.json
193193
│ └── context-id-4/
194194
│ └── data.json
195-
└── another-agent/ # Another agent's knowledge base
195+
└── another-agent_<alphanumeric-code>/ # Another agent's knowledge base
196196
├── contexts.json
197197
└── context-id-5/
198198
└── data.json

0 commit comments

Comments
 (0)