Skip to content

Commit 8cc5a19

Browse files
committed
docs: update ai overview
1 parent 6b5e0e4 commit 8cc5a19

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

apps/website/docs/guide/13-ai-powered-commands/01-introduction.mdx

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,11 @@ selectAiModel: async (ctx, message) => {
9191

9292
The AI has access to Discord-specific information:
9393

94+
- Basic information about itself
9495
- Server/guild information
95-
- User and role data
96-
- Channel management
97-
- Permission checking
96+
- Basic user data
97+
- Basic channel data
98+
- Available commands
9899
- Message history
99100

100101
### Extensible Tool System
@@ -231,6 +232,10 @@ const cache = new Map();
231232
const cachedResult = cache.get(cacheKey) || (await expensiveOperation());
232233
```
233234

235+
:::info
236+
For a better cache management solution, check out the [@commandkit/cache](../04-caching/01-caching-in-commandkit.mdx) plugin guide.
237+
:::
238+
234239
### Async Processing
235240

236241
```ts

0 commit comments

Comments
 (0)