increase legnth of note read to 20000 characters
This commit is contained in:
+1
-1
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user