refactor: Make ingestion of documents false by default (#959)

<!-- .github/pull_request_template.md -->

## Description
<!-- Provide a clear description of the changes in this PR -->

## DCO Affirmation
I affirm that all code in every commit of this pull request conforms to
the terms of the Topoteretes Developer Certificate of Origin.
This commit is contained in:
Igor Ilic 2025-06-10 15:23:17 +02:00 committed by GitHub
parent 964d10b8c6
commit 7bcec5dc51
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -28,7 +28,7 @@ def parse_args():
parser.add_argument(
"--include_docs",
type=lambda x: x.lower() in ("true", "1"),
default=True,
default=False,
help="Whether or not to process non-code files",
)
parser.add_argument(