|
1 | 1 | # 🌐 A3M Router — Cross-Platform Posting Kit (May 2026) |
2 | 2 |
|
3 | | -Use the content below to post across platforms. Each has a tailored version. |
| 3 | +All posts focus on the **three pain points** developers actually told us about. |
4 | 4 |
|
5 | 5 | --- |
6 | 6 |
|
7 | 7 | ## 📺 dev.to |
8 | 8 |
|
9 | | -**Title:** Fastest-Growing npm LLM Router Hits 10K Downloads in 14 Days — Here's What We Did Right |
10 | | - |
11 | | -**Tags:** llm, opensource, typescript, ai, devops |
12 | | - |
13 | | -**URL to post:** https://dev.to/new |
14 | | - |
15 | | -**Content file:** `articles/FRESH_devto_2026_05.md` |
16 | | - |
17 | | -**API method (if token available):** |
18 | | -```bash |
19 | | -curl -X POST https://dev.to/api/articles \ |
20 | | - -H "Content-Type: application/json" \ |
21 | | - -H "Authorization: Bearer $DEV_TO_API_KEY" \ |
22 | | - -d "$(python3 -c " |
23 | | -import json |
24 | | -with open('articles/FRESH_devto_2026_05.md') as f: |
25 | | - body = f.read() |
26 | | -print(json.dumps({ |
27 | | - 'article': { |
28 | | - 'title': 'Fastest-Growing npm LLM Router Hits 10K Downloads in 14 Days', |
29 | | - 'body_markdown': body, |
30 | | - 'tags': ['llm', 'opensource', 'typescript', 'ai', 'devops'], |
31 | | - 'published': true, |
32 | | - 'main_image': 'https://raw.githubusercontent.com/Das-rebel/a3m-router/main/docs/benchmark-chart.png' |
33 | | - } |
34 | | -})) |
35 | | -")" |
36 | | -``` |
| 9 | +**Title:** Three LLM Infrastructure Problems That Shouldn't Exist in 2026 |
| 10 | + |
| 11 | +**Tags:** llm, devops, infrastructure, ai, opensource |
| 12 | + |
| 13 | +**Content:** `articles/FRESH_devto_2026_05.md` |
37 | 14 |
|
38 | 15 | --- |
39 | 16 |
|
40 | 17 | ## 🐙 Hacker News (Show HN) |
41 | 18 |
|
42 | | -**Title:** Show HN: A3M – Open-source LLM router, 10K downloads in 14 days, parallel ensemble |
| 19 | +**Title:** Show HN: A3M – Fixing three LLM infrastructure problems (10K downloads, 62% savings) |
43 | 20 |
|
44 | 21 | **URL:** https://github.com/Das-rebel/a3m-router |
45 | 22 |
|
46 | | -**Post at:** https://news.ycombinator.com/submit |
47 | | - |
48 | | -**Description (for HN comment):** |
49 | | -``` |
50 | | -We built an open-source LLM router that does one thing no other router does: |
51 | | -run multiple providers in parallel and merge results with confidence scoring. |
52 | | -
|
53 | | -Every other router (litellm, one-api, etc.) does sequential fallback — try A, fail, |
54 | | -try B, fail, try C. We run all providers at once, score every result, and return |
55 | | -the best answer with transparent reasoning. |
56 | | -
|
57 | | -Numbers: 10K downloads in 14 days, 99.5% routing accuracy, 62% cost savings, |
58 | | -19.5 KB, zero ML dependencies. Independent benchmark published. |
59 | | -
|
60 | | -npm install adaptive-memory-multi-model-router |
61 | | -``` |
62 | | - |
63 | 23 | --- |
64 | 24 |
|
65 | 25 | ## 🔴 Reddit |
66 | 26 |
|
67 | | -### r/javascript |
68 | | -**Title:** I built an open-source LLM router that runs providers in parallel (not sequential fallback) — 10K downloads in 14 days |
69 | | -**URL:** https://github.com/Das-rebel/a3m-router |
70 | | - |
71 | | -### r/typescript |
72 | | -**Title:** A3M Router — 19.5 KB TypeScript LLM router with parallel ensemble and independent benchmarks |
73 | | -**URL:** https://github.com/Das-rebel/a3m-router |
74 | | - |
75 | | -### r/opensource |
76 | | -**Title:** A3M Router — fastest-growing npm LLM router, open-source, 19.5 KB, 47 providers |
77 | | -**URL:** https://github.com/Das-rebel/a3m-router |
78 | | - |
79 | | -### r/LLMDevs |
80 | | -**Title:** Parallel multi-LLM execution with confidence scoring — open-source router with independent benchmarks |
81 | | -**URL:** https://github.com/Das-rebel/a3m-router |
| 27 | +**r/javascript** |
| 28 | +> Three LLM infrastructure problems that shouldn't exist: |
| 29 | +> 1. Bills 3x higher than needed (62% savings with smart routing) |
| 30 | +> 2. Sequential fallback (we run providers in parallel + score results) |
| 31 | +> 3. No real benchmarks (we published third-party latency data) |
| 32 | +> |
| 33 | +> Built in TypeScript, 19.5 KB, open-source. 10K downloads, zero marketing. |
| 34 | +> https://github.com/Das-rebel/a3m-router |
| 35 | +
|
| 36 | +**r/typescript** |
| 37 | +> A3M Router — 19.5 KB TypeScript LLM router solving three real problems: |
| 38 | +> 62% cost savings, parallel ensemble (unique), independent benchmarks. |
| 39 | +> https://github.com/Das-rebel/a3m-router |
| 40 | +
|
| 41 | +**r/opensource** |
| 42 | +> Open-source LLM router (MIT) that solves real pain points instead of imaginary ones. |
| 43 | +> 47 providers, 19.5 KB, zero ML. 10K downloads in 14 days. |
| 44 | +> https://github.com/Das-rebel/a3m-router |
| 45 | +
|
| 46 | +**r/LLMDevs** |
| 47 | +> Three LLM infrastructure problems we fixed with an open-source router: |
| 48 | +> - Budget overruns (62% savings) |
| 49 | +> - Sequential fallback (parallel + scoring instead) |
| 50 | +> - Black box benchmarks (published independent latency data) |
| 51 | +> https://github.com/Das-rebel/a3m-router |
82 | 52 |
|
83 | 53 | --- |
84 | 54 |
|
85 | 55 | ## 🐦 Twitter / X |
86 | 56 |
|
87 | | -Thread content in `articles/twitter-thread-cost-savings.md` |
88 | | - |
89 | | -Post at: https://twitter.com/compose/tweet |
90 | | - |
91 | | -Suggested thread: |
92 | | -``` |
93 | | -1/7 We built an open-source LLM router that does one thing no competitor does. |
94 | | -
|
95 | | -Every router uses sequential fallback (try A → B → C). |
96 | | -
|
97 | | -We run ALL providers in PARALLEL, score every result, and return the best answer. |
98 | | -
|
99 | | -Here's why this matters ↓ |
100 | | -
|
101 | | -2/7 The results so far: |
102 | | -• 10,024 downloads in 14 days (zero marketing) |
103 | | -• 99.5% routing accuracy |
104 | | -• 62% cost savings |
105 | | -• 19.5 KB — no GPU, no ML model |
106 | | -
|
107 | | -3/7 Independent benchmark (llm-gateway-bench): |
108 | | -Direct to Groq: 138ms |
109 | | -Through A3M: 374ms |
110 | | -
|
111 | | -236ms overhead saves $2,604/year at scale. |
112 | | -
|
113 | | -4/7 The feature everyone asks for: parallel ensemble. |
114 | | -
|
115 | | -Run NVIDIA + Groq + OpenAI at the same time. Score results. Pick the best. |
116 | | -
|
117 | | -No other router does this. |
118 | | -
|
119 | | -5/7 npm install adaptive-memory-multi-model-router |
120 | | -npx a3m-router serve |
121 | | -
|
122 | | -Point any OpenAI SDK at localhost:8787 with model: "auto" |
123 | | -
|
124 | | -6/7 What's included: |
125 | | -• 47 providers |
126 | | -• Parallel ensemble |
127 | | -• RouteLLM routing (99.5% accuracy) |
128 | | -• Budget enforcement |
129 | | -• Semantic cache (30%+ hit rate) |
130 | | -• Persistent memory |
131 | | -
|
132 | | -7/7 GitHub: github.com/Das-rebel/a3m-router |
133 | | -npm: adaptive-memory-multi-model-router |
134 | | -
|
135 | | -Built by developers, for developers. Star if you find it useful ⭐ |
136 | | -``` |
| 57 | +Thread in `articles/twitter-thread-cost-savings.md` |
137 | 58 |
|
138 | 59 | --- |
139 | 60 |
|
140 | | -## 📧 Email Newsletters |
141 | | - |
142 | | -### TLDR Newsletter |
143 | | -Submit at: https://tldr.tech/submit |
144 | | - |
145 | | -### Python Weekly |
146 | | -Submit at: https://www.pythonweekly.com/submit |
147 | | - |
148 | | -### Node Weekly |
149 | | -Submit at: https://nodeweekly.com/submit |
| 61 | +## 📧 Newsletters |
150 | 62 |
|
151 | | -### JavaScript Weekly |
152 | | -Submit at: https://javascriptweekly.com/submit |
| 63 | +| Newsletter | Submit URL | Title | |
| 64 | +|:-----------|:-----------|:------| |
| 65 | +| TLDR | https://tldr.tech/submit | Three LLM Infrastructure Problems That Shouldn't Exist in 2026 | |
| 66 | +| Node Weekly | https://nodeweekly.com/submit | A3M Router — 19.5 KB LLM router with parallel ensemble | |
| 67 | +| JavaScript Weekly | https://javascriptweekly.com/submit | Three LLM infrastructure problems solved with 19.5 KB of TypeScript | |
0 commit comments