@comfanion/usethis_search 3.0.0-dev.12 → 3.0.0-dev.13
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.
- package/package.json +1 -1
- package/vectorizer/hybrid-search.ts +1 -1
- package/vectorizer/index.ts +1 -1
- package/vectorizer.yaml +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@comfanion/usethis_search",
|
|
3
|
-
"version": "3.0.0-dev.
|
|
3
|
+
"version": "3.0.0-dev.13",
|
|
4
4
|
"description": "OpenCode plugin: semantic search with graph-based context (v3: graph relations, 1-hop context, LSP + regex analyzers)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.ts",
|
package/vectorizer/index.ts
CHANGED
package/vectorizer.yaml
CHANGED
|
@@ -36,13 +36,13 @@ vectorizer:
|
|
|
36
36
|
|
|
37
37
|
# Search configuration (v2)
|
|
38
38
|
search:
|
|
39
|
-
hybrid:
|
|
39
|
+
hybrid: true # Enable hybrid search (vector + BM25)
|
|
40
40
|
bm25_weight: 0.3 # BM25 weight in hybrid mode (0.0-1.0)
|
|
41
41
|
|
|
42
42
|
# Graph-based context (v3)
|
|
43
43
|
graph:
|
|
44
44
|
enabled: true
|
|
45
|
-
max_related:
|
|
45
|
+
max_related: 4 # How many related chunks to attach
|
|
46
46
|
min_relevance: 0.5 # Minimum score threshold for related context
|
|
47
47
|
|
|
48
48
|
# LSP for code analysis
|