adaptive-memory-multi-model-router 2.13.14 → 2.13.15
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 +10 -0
- package/dist/cli.js +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,6 +17,16 @@
|
|
|
17
17
|
|
|
18
18
|
### Quick Start: [`docs/QUICK_START.md`](./docs/QUICK_START.md)
|
|
19
19
|
|
|
20
|
+
### 💅 Terminal UI
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
npx a3m
|
|
24
|
+
# or directly:
|
|
25
|
+
node dist/tui/dashboard.js
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Sakura pink overlay box. Commands: `/route`, `/cost`, `/health`, `/models`, `/model <provider>`. Type anything to auto-route. `esc` to quit.
|
|
29
|
+
|
|
20
30
|
### 📊 By the Numbers
|
|
21
31
|
|
|
22
32
|
| Metric | Value | Context |
|
package/dist/cli.js
CHANGED
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
* npx a3m-router models List known models
|
|
18
18
|
* npx a3m-router memory add/search/stats Memory operations
|
|
19
19
|
* npx a3m-router status Show router status
|
|
20
|
+
* npx a3m-router tui Launch terminal UI overlay
|
|
20
21
|
*/
|
|
21
22
|
|
|
22
23
|
const { execSync } = require('child_process');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "adaptive-memory-multi-model-router",
|
|
3
|
-
"version": "2.13.
|
|
3
|
+
"version": "2.13.15",
|
|
4
4
|
"shortName": "A3M Router",
|
|
5
5
|
"displayName": "A3M Router - Adaptive Memory Multi-Model Router",
|
|
6
6
|
"description": "🔥 Fastest-growing npm LLM router — 0 to 10K downloads in 14 days. Parallel multi-LLM execution with independent benchmark validation (138ms baseline, +96ms proxy overhead), 47+ providers, 99.5% routing accuracy, 62% cost savings. Open-source AI gateway with ensemble voting, semantic cache, budget enforcement. 19.5 KB, zero ML.",
|