File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed
apps/website/docs/guide/13-ai-powered-commands Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -91,10 +91,11 @@ selectAiModel: async (ctx, message) => {
9191
9292The 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();
231232const 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
You can’t perform that action at this time.
0 commit comments