Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
IT Nachrichten22. September(22.09.2026 um 00:05 Uhr)
IT NachrichtenLizenzprobleme: AnyDesk und TeamViewer(22.09.2026 um 00:30 Uhr)
Apple iOS & macOSApple's iOS 27.2 beta 2 reveals new anti-snatching protections(22.09.2026 um 00:27 Uhr)
AI & KI NachrichtenUC Irvine to Study AI for Writing Instruction(21.09.2026 um 23:31 Uhr)
AI & KI NachrichtenBurnham to call for global effort to control threats posed by AI(21.09.2026 um 23:30 Uhr)
IT Nachrichten22. September(22.09.2026 um 00:05 Uhr)
IT NachrichtenLizenzprobleme: AnyDesk und TeamViewer(22.09.2026 um 00:30 Uhr)
Apple iOS & macOSApple's iOS 27.2 beta 2 reveals new anti-snatching protections(22.09.2026 um 00:27 Uhr)
AI & KI NachrichtenUC Irvine to Study AI for Writing Instruction(21.09.2026 um 23:31 Uhr)
AI & KI NachrichtenBurnham to call for global effort to control threats posed by AI(21.09.2026 um 23:30 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

A3M Router v2.0: Now an OpenAI-Compatible AI Gateway with 39 Providers 🚀

We just shipped A3M Router v2.0.0 — the biggest update since launch. What started as a simple routing library is now a full AI Gateway. What's New 1. OpenAI-Compatible Proxy Server npx a3m-router s…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!

We just shipped A3M Router v2.0.0 — the biggest update since launch.



What started as a simple routing library is now a full AI Gateway.






What's New






1. OpenAI-Compatible Proxy Server






npx a3m-router serve






That's it. You now have an OpenAI-compatible API proxy running on localhost:8787.




# Drop-in replacement — just change the base URL
from openai import OpenAI

client = OpenAI(
base_url="http://localhost:8787/v1",
api_key="not-needed" # A3M Router handles provider keys
)

response = client.chat.completions.create(
model="auto", # Intelligent routing
messages=[{"role": "user", "content": "Hello"}]
)






Any OpenAI SDK works without code changes. Python, Node, LangChain, LlamaIndex — just point base_url to A3M Router.






2. Real-Time Dashboard






http://localhost:8787/






Live dashboard showing:




  • Request volume and costs

  • Provider status (online/offline)

  • Request log with routing decisions

  • Cost breakdown by provider






3. LangChain Adapter






import { A3MChatModel } from 'adaptive-memory-multi-model-router/langchain';

const model = new A3MChatModel({ modelName: 'auto' });
const response = await model.invoke([new HumanMessage("Hello")]);






Drop-in replacement for ChatOpenAI. Supports streaming, tool calling, and structured output.






4. Guardrails Engine






import { GuardrailEngine } from 'adaptive-memory-multi-model-router';

const guardrail = new GuardrailEngine({
promptInjection: true,
piiDetection: true,
contentFilter: true
});

const result = await guardrail.checkInput(userInput);
if (result.blocked) {
// Prompt injection or PII detected
console.log(result.reason);
}






Built-in detection for:




  • Prompt injection attempts

  • PII (emails, phones, SSNs, credit cards, API keys)

  • Harmful content

  • Language detection for routing






5. Semantic Cache






import { SemanticCache } from 'adaptive-memory-multi-model-router';

const cache = new SemanticCache({ similarityThreshold: 0.92 });

// First query: miss, calls provider
const result1 = await cache.get("What is Python?");

// Semantically similar: HIT (no API call!)
const result2 = await cache.get("Tell me about Python");






Catches semantically similar queries using n-gram similarity. No embedding API needed.






6. Cost Analytics






import { CostAnalytics } from 'adaptive-memory-multi-model-router';

const analytics = new CostAnalytics();
analytics.record({ provider: 'groq', cost: 0.001, latency: 420 });

const savings = analytics.getSavings('openai');
// Total saved: $X, XX% cheaper, projected monthly savings: $Y









7. 39 Providers (was 12)



New providers added:





  • Local: Ollama, LM Studio, vLLM


  • Cheap/Fast: DeepInfra, Together AI, Fireworks, Anyscale, Novita, SambaNova


  • Mid-tier: Cohere, Perplexity, AI21


  • Asian: DeepSeek, Moonshot, Qwen, Zhipu, Yi


  • Enterprise: Azure OpenAI, AWS Bedrock, Google Vertex






Quick Start






# Install
npm install adaptive-memory-multi-model-router

# Start the gateway
npx a3m-router serve

# Or use as a library
node -e "const { createA3MRouter } = require('adaptive-memory-multi-model-router'); ..."









The Numbers





















































Metric v1.9.5 v2.0.0
Providers 12 39
Exports 13 17
Proxy server
Dashboard
LangChain
Guardrails Basic Full engine
Semantic cache
Cost analytics Basic Full analytics





Links





MIT license. Open source. No vendor lock-in.






Built because I was tired of marketing claims. Sharing the data so you don't have to benchmark yourself.

Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten A3M Router v2.0: Now an OpenAI-Compatible AI Gateway with 39 Providers 🚀

Thematisch verwandte Begriffe: Router, OpenAICompatible, Gateway, with · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-49449 | Joplin is an open source note-taking and to-do application that organise…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick