adaptive-memory-multi-model-router 2.15.1 → 2.15.2

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/README.md +6 -3
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,10 +1,10 @@
1
1
  # A3M Router
2
2
 
3
- **OpenAI-compatible LLM routing gateway — routes requests to the cheapest capable provider per query.**
3
+ **Universal LLM routing gateway — routes requests to the cheapest capable provider across 47+ models.**
4
4
 
5
- A3M Router is a stateless proxy that sits between your application and 47+ LLM providers. It inspects each request, estimates how complex it is, and routes it to the cheapest provider that can handle it — without retraining a model or managing GPU infrastructure.
5
+ A3M Router is a stateless proxy between your application and 47+ LLM providers. It inspects each request, estimates how complex it is, and routes it to the cheapest capable provider — without retraining a model or managing GPU infrastructure.
6
6
 
7
- Drop-in replacement for OpenAI API calls. Switch providers or add new ones without changing application code.
7
+ The API uses the OpenAI format (same endpoints, same request/response shapes), so existing SDKs and prompts work without changes. But it routes across any provider you configure, not just OpenAI.
8
8
 
9
9
  ---
10
10
 
@@ -89,6 +89,9 @@ const result = await executeEnsemble(
89
89
 
90
90
  A3M is a routing engine. LiteLLM is an enterprise platform. Use the right tool for your stage.
91
91
 
92
+ ### OpenAI-Compatible API
93
+ The API format is OpenAI-compatible — same `/v1/chat/completions` endpoints, same request/response shapes — so any OpenAI-compatible SDK or proxy tool works with A3M without code changes. This is useful for switching providers behind an existing integration or for tooling that only supports the OpenAI format.
94
+
92
95
  ---
93
96
 
94
97
  ## Architecture
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "adaptive-memory-multi-model-router",
3
- "version": "2.15.1",
3
+ "version": "2.15.2",
4
4
  "shortName": "A3M Router",
5
5
  "displayName": "A3M Router - Adaptive Memory Multi-Model Router",
6
- "description": "OpenAI-compatible LLM routing gateway. Routes requests to cheapest capable provider across 47+ providers. Heuristic routing, parallel ensemble, semantic cache. Drop-in for OpenAI SDK.",
6
+ "description": "Universal LLM routing gateway. Routes requests to cheapest capable provider across 47+ models. Heuristic routing, parallel ensemble, semantic cache.",
7
7
  "main": "dist/index.js",
8
8
  "bin": {
9
9
  "a3m-router": "dist/cli.js",