voyageai-cli 1.33.4 → 1.33.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 +1 -1
- package/package.json +4 -1
- package/src/commands/chat.js +546 -75
- package/src/commands/ingest.js +4 -4
- package/src/commands/init.js +18 -0
- package/src/commands/playground.js +107 -14
- package/src/commands/purge.js +7 -6
- package/src/commands/refresh.js +5 -4
- package/src/lib/catalog.js +1 -1
- package/src/lib/chat.js +39 -5
- package/src/lib/cross-session-recall.js +80 -0
- package/src/lib/explanations.js +203 -0
- package/src/lib/history.js +44 -4
- package/src/lib/memory-budget.js +83 -0
- package/src/lib/memory-strategy.js +263 -0
- package/src/lib/memory-summarizer.js +129 -0
- package/src/lib/session-store.js +353 -0
- package/src/lib/session-summary-store.js +140 -0
- package/src/lib/turn-orchestrator.js +289 -0
- package/src/lib/turn-state.js +187 -0
- package/src/nano/nano-bridge.py +1 -1
- package/src/playground/assets/home/demo-gallery-preview.mp4 +0 -0
- package/src/playground/assets/home/demo-gallery-preview.png +0 -0
- package/src/playground/index.html +324 -2
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# voyageai-cli
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
|
-
<img src="https://raw.githubusercontent.com/mrlynn/voyageai-cli/main/
|
|
4
|
+
<img src="https://raw.githubusercontent.com/mrlynn/voyageai-cli/main/cli-quickstart.gif" alt="voyageai-cli demo" width="800" />
|
|
5
5
|
</p>
|
|
6
6
|
|
|
7
7
|
[](https://github.com/mrlynn/voyageai-cli/actions/workflows/ci.yml) [](https://www.npmjs.com/package/voyageai-cli) [](https://opensource.org/licenses/MIT) [](https://nodejs.org) [](https://github.com/mrlynn/voyageai-cli/releases)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "voyageai-cli",
|
|
3
|
-
"version": "1.33.
|
|
3
|
+
"version": "1.33.6",
|
|
4
4
|
"description": "CLI for Voyage AI embeddings, reranking, and MongoDB Atlas Vector Search",
|
|
5
5
|
"_comment": "This package contains the CLI + web playground. The electron/ directory is excluded via .npmignore and distributed via GitHub Releases.",
|
|
6
6
|
"bin": {
|
|
@@ -38,6 +38,9 @@
|
|
|
38
38
|
"test": "node --test test/**/*.test.js",
|
|
39
39
|
"prepare": "git config core.hooksPath scripts/hooks 2>/dev/null || true",
|
|
40
40
|
"reset": "node scripts/reset.js",
|
|
41
|
+
"demos:list": "node scripts/run-demos.js list",
|
|
42
|
+
"demos:run": "node scripts/run-demos.js",
|
|
43
|
+
"demos:run:all": "node scripts/run-demos.js all",
|
|
41
44
|
"version": "node scripts/sync-nano-version.js && git add src/nano/nano-bridge.py",
|
|
42
45
|
"release": "./scripts/release.sh",
|
|
43
46
|
"app:install": "cd electron && npm install",
|