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) => {
91
91
92
92
The AI has access to Discord-specific information:
93
93
94
+ - Basic information about itself
94
95
- 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
98
99
- Message history
99
100
100
101
### Extensible Tool System
@@ -231,6 +232,10 @@ const cache = new Map();
231
232
const cachedResult = cache .get (cacheKey ) || (await expensiveOperation ());
232
233
```
233
234
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
+
234
239
### Async Processing
235
240
236
241
``` ts
You can’t perform that action at this time.
0 commit comments