Skip to content

Commit 96d62f9

Browse files
committed
Increase size limit for digest
1 parent 4f62daa commit 96d62f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ingest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
MAX_DIRECTORY_DEPTH = 10 # Maximum depth of directory traversal
88
MAX_FILES = 10000 # Maximum number of files to process
9-
MAX_TOTAL_SIZE_BYTES = 100 * 1024 * 1024 # 100MB total size limit
9+
MAX_TOTAL_SIZE_BYTES = 500 * 1024 * 1024 # 100MB total size limit
1010

1111
def should_ignore(path: str, base_path: str, ignore_patterns: List[str]) -> bool:
1212
"""Checks if a file or directory should be ignored based on patterns."""

0 commit comments

Comments
 (0)