koishi-plugin-best-cave 2.3.2 → 2.3.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 +2 -2
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -980,8 +980,8 @@ var Config = import_koishi3.Schema.intersect([
|
|
|
980
980
|
import_koishi3.Schema.object({
|
|
981
981
|
enablePend: import_koishi3.Schema.boolean().default(false).description("启用审核"),
|
|
982
982
|
enableSimilarity: import_koishi3.Schema.boolean().default(false).description("启用查重"),
|
|
983
|
-
textThreshold: import_koishi3.Schema.number().min(0).max(100).step(0.01).default(
|
|
984
|
-
imageThreshold: import_koishi3.Schema.number().min(0).max(100).step(0.01).default(
|
|
983
|
+
textThreshold: import_koishi3.Schema.number().min(0).max(100).step(0.01).default(90).description("文本相似度阈值 (%)"),
|
|
984
|
+
imageThreshold: import_koishi3.Schema.number().min(0).max(100).step(0.01).default(90).description("图片相似度阈值 (%)")
|
|
985
985
|
}).description("复核配置"),
|
|
986
986
|
import_koishi3.Schema.object({
|
|
987
987
|
localPath: import_koishi3.Schema.string().description("文件映射路径"),
|