Raise combined tag cap from 5 to 8
This commit is contained in:
+1
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user