mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-21 19:08:17 +08:00
feat: enhance search, ranking, reranker and CLI tooling across ccw and codex-lens
Major improvements to smart-search, chain-search cascade, ranking pipeline, reranker factory, CLI history store, codex-lens integration, and uv-manager. Simplify command-generator skill by inlining phases. Add comprehensive tests. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -57,9 +57,9 @@ semantic-directml = [
|
||||
# Cross-encoder reranking (second-stage, optional)
|
||||
# Install with: pip install codexlens[reranker] (default: ONNX backend)
|
||||
reranker-onnx = [
|
||||
"optimum~=1.16.0",
|
||||
"onnxruntime~=1.15.0",
|
||||
"transformers~=4.36.0",
|
||||
"optimum[onnxruntime]~=2.1.0",
|
||||
"onnxruntime~=1.23.0",
|
||||
"transformers~=4.53.0",
|
||||
]
|
||||
|
||||
# Remote reranking via HTTP API
|
||||
@@ -79,9 +79,9 @@ reranker-legacy = [
|
||||
|
||||
# Backward-compatible alias for default reranker backend
|
||||
reranker = [
|
||||
"optimum~=1.16.0",
|
||||
"onnxruntime~=1.15.0",
|
||||
"transformers~=4.36.0",
|
||||
"optimum[onnxruntime]~=2.1.0",
|
||||
"onnxruntime~=1.23.0",
|
||||
"transformers~=4.53.0",
|
||||
]
|
||||
|
||||
# Encoding detection for non-UTF8 files
|
||||
@@ -116,3 +116,12 @@ package-dir = { "" = "src" }
|
||||
|
||||
[tool.setuptools.package-data]
|
||||
"codexlens.lsp" = ["lsp-servers.json"]
|
||||
|
||||
[tool.pytest.ini_options]
|
||||
markers = [
|
||||
"integration: marks tests that exercise broader end-to-end or dependency-heavy flows",
|
||||
]
|
||||
filterwarnings = [
|
||||
"ignore:'BaseCommand' is deprecated and will be removed in Click 9.0.*:DeprecationWarning",
|
||||
"ignore:The '__version__' attribute is deprecated and will be removed in Click 9.1.*:DeprecationWarning",
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user