adaptive-memory-multi-model-router 2.13.2 → 2.13.3
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 +898 -192
- package/dist/tui/dashboard.d.ts +9 -7
- package/dist/tui/dashboard.js +228 -454
- package/dist/tui/dashboard.js.map +1 -1
- package/package.json +1 -1
- package/src/tui/dashboard.ts +223 -490
package/dist/tui/dashboard.d.ts
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
/**
|
|
3
|
-
* A3M Router TUI v2 —
|
|
3
|
+
* A3M Router TUI v2 — Conversational PI-style interface
|
|
4
4
|
*
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
*
|
|
5
|
+
* Commands:
|
|
6
|
+
* /route <query> — Route a prompt through cheapest capable model
|
|
7
|
+
* /cost — Cost breakdown
|
|
8
|
+
* /health — Provider health check
|
|
9
|
+
* /providers — List all providers
|
|
10
|
+
* /clear — Clear chat
|
|
11
|
+
* /help — Show commands
|
|
12
|
+
* /exit, /q — Quit
|
|
11
13
|
*/
|
|
12
14
|
export {};
|