From 8197aa6d5fe913b7cd341519b0c7af98ea90a829 Mon Sep 17 00:00:00 2001 From: Ethan J Lewis Date: Sat, 7 Feb 2026 11:19:39 -0600 Subject: [PATCH] increase legnth of note read to 20000 characters --- tag-notes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tag-notes.py b/tag-notes.py index 9949da6..996503f 100755 --- a/tag-notes.py +++ b/tag-notes.py @@ -138,7 +138,7 @@ def process_note(file_path, taxonomy): return # Call LLM - llm_response = call_llm(None, body[:2000], taxonomy) # Limit content to first 2000 chars + llm_response = call_llm(None, body[:20000], taxonomy) # Limit content to first 20000 chars if not llm_response: print(f" ✗ Failed to get LLM response")