Merge pull request #4084 from pizzav-xyz/feature/keyword-detector-enabled-expansions

feat(keyword-detector): add enabled_expansions config for allowlist control
This commit is contained in:
YeonGyu-Kim
2026-05-21 12:58:18 +09:00
committed by GitHub
5 changed files with 127 additions and 3 deletions
+1
View File
@@ -4,6 +4,7 @@ export const KeywordTypeSchema = z.enum(["ultrawork", "search", "analyze", "team
export type KeywordType = z.infer<typeof KeywordTypeSchema>
export const KeywordDetectorConfigSchema = z.object({
enabled_expansions: z.array(KeywordTypeSchema).optional(),
disabled_keywords: z.array(KeywordTypeSchema).optional(),
})