Raise combined tag cap from 5 to 8

This commit is contained in:
2026-04-19 22:27:40 -05:00
parent 68d78fe6bd
commit fd1407e06f
+1 -1
View File
@@ -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