mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-06-15 10:45:01 +00:00
feat: reduce default loose_matching_threshold to 1 to avoid false positives
This commit is contained in:
parent
b62a7a3ac3
commit
062f0d1a4e
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ const configSchema = z.strictObject({
|
|||
only_full_words: z.boolean().default(true),
|
||||
normalize: z.boolean().default(false),
|
||||
loose_matching: z.boolean().default(false),
|
||||
loose_matching_threshold: z.number().int().default(4),
|
||||
loose_matching_threshold: z.number().int().default(1),
|
||||
strip_markdown: z.boolean().default(false),
|
||||
match_messages: z.boolean().default(true),
|
||||
match_embeds: z.boolean().default(false),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue