@iceinvein/code-intelligence-mcp 0.1.7 → 0.1.8

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.
Files changed (2) hide show
  1. package/bin/run.js +2 -2
  2. package/package.json +1 -1
package/bin/run.js CHANGED
@@ -24,7 +24,7 @@ if (!env.BASE_DIR) {
24
24
 
25
25
  // 2. Default to Candle backend (local AI)
26
26
  if (!env.EMBEDDINGS_BACKEND) {
27
- env.EMBEDDINGS_BACKEND = 'candle';
27
+ env.EMBEDDINGS_BACKEND = 'fastembed';
28
28
  }
29
29
 
30
30
  // 3. Enable Auto Download
@@ -34,7 +34,7 @@ if (!env.EMBEDDINGS_AUTO_DOWNLOAD) {
34
34
 
35
35
  // 4. Set Better Default Model (Jina V2 Base Code)
36
36
  if (!env.EMBEDDINGS_MODEL_REPO) {
37
- env.EMBEDDINGS_MODEL_REPO = 'jinaai/jina-embeddings-v2-base-code';
37
+ env.EMBEDDINGS_MODEL_REPO = 'BAAI/bge-base-en-v1.5';
38
38
  }
39
39
 
40
40
  // 5. Metal Acceleration for macOS
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iceinvein/code-intelligence-mcp",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "Code Intelligence MCP Server - Smart context for your LLM coding agent",
5
5
  "bin": {
6
6
  "code-intelligence-mcp": "bin/run.js"