mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-19 18:58:47 +08:00
Rename the v2 search engine package to `codexlens-search` (import as `codexlens_search`) so it can be installed independently and consumed by the original codex-lens as a dependency. This avoids package path conflicts since both previously used `src/codexlens/`. Changes: - Rename src/codexlens/ -> src/codexlens_search/ - Update pyproject.toml: name=codexlens-search, version=0.2.0 - Update all imports across source, tests, and scripts - Add public API exports in __init__.py (Config, SearchPipeline, IndexingPipeline, SearchResult, IndexStats) 37/37 tests pass. No functional changes. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
32 lines
619 B
Python
32 lines
619 B
Python
from codexlens_search.config import Config
|
|
|
|
|
|
def test_config_instantiates_no_args():
|
|
cfg = Config()
|
|
assert cfg is not None
|
|
|
|
|
|
def test_defaults_hnsw_ef():
|
|
cfg = Config.defaults()
|
|
assert cfg.hnsw_ef == 150
|
|
|
|
|
|
def test_defaults_hnsw_M():
|
|
cfg = Config.defaults()
|
|
assert cfg.hnsw_M == 32
|
|
|
|
|
|
def test_small_hnsw_ef():
|
|
cfg = Config.small()
|
|
assert cfg.hnsw_ef == 50
|
|
|
|
|
|
def test_custom_instantiation():
|
|
cfg = Config(hnsw_ef=100)
|
|
assert cfg.hnsw_ef == 100
|
|
|
|
|
|
def test_fusion_weights_keys():
|
|
cfg = Config()
|
|
assert set(cfg.fusion_weights.keys()) == {"exact", "fuzzy", "vector", "graph"}
|