From fd1407e06f0a1e3185ec30bc0e8b338efa29615e Mon Sep 17 00:00:00 2001 From: Ethan J Lewis Date: Sun, 19 Apr 2026 22:27:40 -0500 Subject: [PATCH] Raise combined tag cap from 5 to 8 --- tag-notes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tag-notes.py b/tag-notes.py index 578bda2..f12a232 100755 --- a/tag-notes.py +++ b/tag-notes.py @@ -223,7 +223,7 @@ def process_note(file_path, taxonomy, new_tag_accumulator): if needs_tags: taxonomy_tags = llm_response.get('tags_from_taxonomy') or [] new_suggestions = llm_response.get('new_tag_suggestions') or [] - combined = list(dict.fromkeys(list(taxonomy_tags) + list(new_suggestions)))[:5] + combined = list(dict.fromkeys(list(taxonomy_tags) + list(new_suggestions)))[:8] if combined: frontmatter['tags'] = combined updated = True