java-codebase-rag 0.3.1__py3-none-any.whl → 0.4.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ast_java.py +1 -1
- build_ast_graph.py +833 -64
- graph_enrich.py +32 -0
- java_codebase_rag/cli.py +74 -5
- java_codebase_rag/config.py +70 -2
- java_codebase_rag/pipeline.py +55 -0
- {java_codebase_rag-0.3.1.dist-info → java_codebase_rag-0.4.0.dist-info}/METADATA +10 -4
- {java_codebase_rag-0.3.1.dist-info → java_codebase_rag-0.4.0.dist-info}/RECORD +13 -13
- server.py +58 -6
- {java_codebase_rag-0.3.1.dist-info → java_codebase_rag-0.4.0.dist-info}/WHEEL +0 -0
- {java_codebase_rag-0.3.1.dist-info → java_codebase_rag-0.4.0.dist-info}/entry_points.txt +0 -0
- {java_codebase_rag-0.3.1.dist-info → java_codebase_rag-0.4.0.dist-info}/licenses/LICENSE +0 -0
- {java_codebase_rag-0.3.1.dist-info → java_codebase_rag-0.4.0.dist-info}/top_level.txt +0 -0
ast_java.py
CHANGED
|
@@ -83,7 +83,7 @@ _DTO_LOMBOK_ANNOTATIONS: frozenset[str] = frozenset({
|
|
|
83
83
|
# Phase 11: `EDGE_SCHEMA` in `java_ontology.py` (canonical edge navigation schema; v14 re-index).
|
|
84
84
|
# Phase 12: CALLS `callee_declaring_role`, supertype-walk dedup, pass3 unresolved counters (v15 re-index).
|
|
85
85
|
# Bumps whenever extraction / enrichment semantics change.
|
|
86
|
-
ONTOLOGY_VERSION =
|
|
86
|
+
ONTOLOGY_VERSION = 17
|
|
87
87
|
|
|
88
88
|
ROLE_ANNOTATIONS: dict[str, str] = {
|
|
89
89
|
# Spring Web
|