koishi-plugin-chat-analyse 1.7.2 → 1.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.js +1 -1
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -2738,7 +2738,7 @@ var Config4 = import_koishi8.Schema.intersect([
|
|
|
2738
2738
|
enableOriRecord: import_koishi8.Schema.boolean().default(true).description("启用原始记录"),
|
|
2739
2739
|
enableWordCloud: import_koishi8.Schema.boolean().default(true).description("启用词云生成"),
|
|
2740
2740
|
enableAiSummary: import_koishi8.Schema.boolean().default(false).description("启用模型分析"),
|
|
2741
|
-
tokenPerRequest: import_koishi8.Schema.number().
|
|
2741
|
+
tokenPerRequest: import_koishi8.Schema.number().default(32768).description("最大 Token 数"),
|
|
2742
2742
|
enableAutoBackup: import_koishi8.Schema.boolean().default(true).description("启用自动归档"),
|
|
2743
2743
|
cacheRetentionDays: import_koishi8.Schema.number().min(0).default(7).description("记录保留天数"),
|
|
2744
2744
|
endpoints: import_koishi8.Schema.array(import_koishi8.Schema.object({
|
package/package.json
CHANGED