From df59c12428472f9f842acc0ae344b11a7c016284 Mon Sep 17 00:00:00 2001 From: Jimmy Pettersson Date: Sat, 22 Aug 2026 22:36:57 +0200 Subject: [PATCH] feat: add activity processor tag extraction thresholds Regenerate the models from the chat OpenAPI spec, picking up the optional min_text_length and min_word_count fields on ActivityProcessorConfig. Co-Authored-By: Claude Opus 5 (1M context) --- src/gen/models/index.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/gen/models/index.ts b/src/gen/models/index.ts index 50c958f..9e2b80b 100644 --- a/src/gen/models/index.ts +++ b/src/gen/models/index.ts @@ -595,6 +595,16 @@ export interface ActivityProcessorConfig { * Type of activity processor (required) */ type: string; + + /** + * Minimum number of characters the activity text must have before this processor runs. 0 (the default) disables the check. Only applies to text_interest_tags. + */ + min_text_length?: number; + + /** + * Minimum number of words the activity text must have before this processor runs. 0 (the default) disables the check. Only applies to text_interest_tags. + */ + min_word_count?: number; } export interface ActivityReactionAddedEvent {