Skip to content

Commit 493e254

Browse files
committed
fix: drop 'OpenAI-compatible' from tagline, clarify it's the API format not the limitation
1 parent b08b787 commit 493e254

2 files changed

Lines changed: 8 additions & 5 deletions

File tree

‎README.md‎

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# A3M Router
22

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.**
44

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.
66

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.
88

99
---
1010

@@ -89,6 +89,9 @@ const result = await executeEnsemble(
8989

9090
A3M is a routing engine. LiteLLM is an enterprise platform. Use the right tool for your stage.
9191

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+
9295
---
9396

9497
## Architecture

‎package.json‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "adaptive-memory-multi-model-router",
3-
"version": "2.15.0",
3+
"version": "2.15.1",
44
"shortName": "A3M Router",
55
"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.",
77
"main": "dist/index.js",
88
"bin": {
99
"a3m-router": "dist/cli.js",

0 commit comments

Comments
 (0)