increase legnth of note read to 20000 characters

This commit is contained in:
2026-02-07 11:19:39 -06:00
parent 40c57e82a4
commit 8197aa6d5f
+1 -1
View File
@@ -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")