codebase-retrieval-context-engine 2.0.0__py3-none-any.whl → 2.0.1__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: codebase-retrieval-context-engine
3
- Version: 2.0.0
3
+ Version: 2.0.1
4
4
  Summary: Code retrieval engine — hybrid embedding + graph search for LLM context injection.
5
5
  Project-URL: Homepage, https://github.com/nullmastermind/local-context-engine
6
6
  Project-URL: Repository, https://github.com/nullmastermind/local-context-engine
@@ -17,6 +17,7 @@ Classifier: Topic :: Software Development :: Libraries
17
17
  Requires-Python: >=3.11
18
18
  Requires-Dist: mcp>=1.1.2
19
19
  Requires-Dist: numpy>=2.0
20
+ Requires-Dist: pathspec>=0.11
20
21
  Requires-Dist: pydantic>=2.0
21
22
  Requires-Dist: python-dotenv>=1.0
22
23
  Requires-Dist: rich>=13.0
@@ -1,4 +1,4 @@
1
- corbell/__init__.py,sha256=ECnnvynYrlq_niQjMhnC171R8q2axnwhEGqVRoWu50E,124
1
+ corbell/__init__.py,sha256=gUE7pWjjfUbFYz86nNIEp6iM5c3J-2s84OydWPFmEMc,124
2
2
  corbell/cli/__init__.py,sha256=5-MP6JIWgp4nDLNIhqP6Gtx97GESaIYg3NGxtRGaMv0,28
3
3
  corbell/cli/main.py,sha256=anYpXiyQD6_1wMS0Dtef6Rxtxd0NEFe7HHnerHxf3J4,1835
4
4
  corbell/cli/commands/__init__.py,sha256=0mAOs3RWC7XMZnGRN677hjPCHHQKDq9ASjIr_GQM3js,37
@@ -39,8 +39,8 @@ corbell/core/query/formatter.py,sha256=xMr8HE-oxBSEKb514aixY7aoUWGeYoK1w5wnaIlCY
39
39
  corbell/core/query/graph_expander.py,sha256=Y-yKnr6db-OM2Gh8ukYgVIcUZa6-wfWA-GhdvOwf_yA,9184
40
40
  corbell/core/query/merger.py,sha256=fs6PL7X7EweXnSnDRnpzmpaU8JjwJpL0akzm4hSwLJk,6168
41
41
  corbell/core/query/reranker.py,sha256=HYckYiUVZ80mbLGHhK4IHxNI7uUqNaztwXLbYgdnoWU,4298
42
- codebase_retrieval_context_engine-2.0.0.dist-info/METADATA,sha256=SVKzXFoaizz5EyBgOZbmwdtsKI72ZcKgjzCyes_8mJY,17408
43
- codebase_retrieval_context_engine-2.0.0.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
44
- codebase_retrieval_context_engine-2.0.0.dist-info/entry_points.txt,sha256=vFB4a4Qb7Ty182usK8deJXiis0UYnGIUDusw0V3Jya8,115
45
- codebase_retrieval_context_engine-2.0.0.dist-info/licenses/LICENSE,sha256=HrhfyXIkWY2tGFK11kg7vPCqhgh5DcxleloqdhrpyMY,11558
46
- codebase_retrieval_context_engine-2.0.0.dist-info/RECORD,,
42
+ codebase_retrieval_context_engine-2.0.1.dist-info/METADATA,sha256=lXO0MmvDLFejoeUsHcgOcIRYr284dwjN7YpBpkUloGU,17438
43
+ codebase_retrieval_context_engine-2.0.1.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
44
+ codebase_retrieval_context_engine-2.0.1.dist-info/entry_points.txt,sha256=vFB4a4Qb7Ty182usK8deJXiis0UYnGIUDusw0V3Jya8,115
45
+ codebase_retrieval_context_engine-2.0.1.dist-info/licenses/LICENSE,sha256=HrhfyXIkWY2tGFK11kg7vPCqhgh5DcxleloqdhrpyMY,11558
46
+ codebase_retrieval_context_engine-2.0.1.dist-info/RECORD,,
corbell/__init__.py CHANGED
@@ -2,5 +2,5 @@
2
2
  Corbell — Code retrieval engine for LLM context injection.
3
3
  """
4
4
 
5
- __version__ = "2.0.0"
5
+ __version__ = "2.0.1"
6
6
  __all__ = ["__version__"]