kontext-engine 0.1.4 → 0.1.6
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/README.md +8 -1
- package/dist/cli/index.js +652 -111
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts +14 -2
- package/dist/index.js +553 -148
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -342,7 +342,14 @@ Configuration lives in `.ctx/config.json`, created automatically by `ctx init`.
|
|
|
342
342
|
|---|---|---|---|---|
|
|
343
343
|
| `local` | all-MiniLM-L6-v2 | 384 | Free | Default. Runs on CPU via ONNX Runtime. |
|
|
344
344
|
| `voyage` | voyage-code-3 | 1024 | API pricing | Higher quality for code search. |
|
|
345
|
-
| `openai` | text-embedding-3-
|
|
345
|
+
| `openai` | text-embedding-3-large | 1024 | API pricing | OpenAI embedding model (dimension truncated for efficiency). |
|
|
346
|
+
|
|
347
|
+
Remote embedders require API keys:
|
|
348
|
+
|
|
349
|
+
```bash
|
|
350
|
+
export CTX_VOYAGE_KEY=your-key
|
|
351
|
+
export CTX_OPENAI_KEY=your-key
|
|
352
|
+
```
|
|
346
353
|
|
|
347
354
|
### Search strategies
|
|
348
355
|
|