From 7bcec5dc51f35e04ab1383b5b4c4a6e58fbc09af Mon Sep 17 00:00:00 2001 From: Igor Ilic <30923996+dexters1@users.noreply.github.com> Date: Tue, 10 Jun 2025 15:23:17 +0200 Subject: [PATCH] refactor: Make ingestion of documents false by default (#959) ## Description ## 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. --- examples/python/code_graph_example.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/python/code_graph_example.py b/examples/python/code_graph_example.py index 6a0745f01..13e2d822f 100644 --- a/examples/python/code_graph_example.py +++ b/examples/python/code_graph_example.py @@ -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(