@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@comfanion/usethis_search",
3
- "version": "3.0.0-dev.12",
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",
@@ -13,7 +13,7 @@ export interface HybridSearchConfig {
13
13
  }
14
14
 
15
15
  export const DEFAULT_HYBRID_CONFIG: HybridSearchConfig = {
16
- enabled: false,
16
+ enabled: true,
17
17
  bm25_weight: 0.3,
18
18
  }
19
19
 
@@ -110,7 +110,7 @@ function defaultVectorizerYaml() {
110
110
  `\n` +
111
111
  ` # Hybrid search (vector + BM25)\n` +
112
112
  ` search:\n` +
113
- ` hybrid: false\n` +
113
+ ` hybrid: true\n` +
114
114
  ` bm25_weight: 0.3\n` +
115
115
  `\n` +
116
116
  ` # Quality monitoring\n` +
package/vectorizer.yaml CHANGED
@@ -36,13 +36,13 @@ vectorizer:
36
36
 
37
37
  # Search configuration (v2)
38
38
  search:
39
- hybrid: false # Enable hybrid search (vector + BM25)
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: 3 # How many related chunks to attach
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