📰 IT NachrichtenSatellit FLEX macht Photosynthese weltweit sichtbar(10.09.2026 um 10:45 Uhr)
📰 IT NachrichtenPolestar kündigt ein neues Design ab 2027 an(07.09.2026 um 14:56 Uhr)
📰 IT NachrichtenSkoda denkt laut über elektrischen Fabia nach(07.09.2026 um 19:12 Uhr)
📰 IT NachrichtenJaguar Land Rover will Stellen vor dem großen Neustart abbauen(08.09.2026 um 08:48 Uhr)
📰 IT NachrichtenVolkswagen spart (schon wieder) bei der Software(08.09.2026 um 09:00 Uhr)
📰 IT NachrichtenDacia zeigt den komplett neuen Spring(08.09.2026 um 09:14 Uhr)
📰 IT NachrichtenVolkswagen will sich von weiterer Marke trennen(08.09.2026 um 12:14 Uhr)
📰 IT NachrichtenMercedes VLE wird günstiger: Das sind die neuen Preise(08.09.2026 um 13:08 Uhr)
📰 IT NachrichtenSatellit FLEX macht Photosynthese weltweit sichtbar(10.09.2026 um 10:45 Uhr)
📰 IT NachrichtenPolestar kündigt ein neues Design ab 2027 an(07.09.2026 um 14:56 Uhr)
📰 IT NachrichtenSkoda denkt laut über elektrischen Fabia nach(07.09.2026 um 19:12 Uhr)
📰 IT NachrichtenJaguar Land Rover will Stellen vor dem großen Neustart abbauen(08.09.2026 um 08:48 Uhr)
📰 IT NachrichtenVolkswagen spart (schon wieder) bei der Software(08.09.2026 um 09:00 Uhr)
📰 IT NachrichtenDacia zeigt den komplett neuen Spring(08.09.2026 um 09:14 Uhr)
📰 IT NachrichtenVolkswagen will sich von weiterer Marke trennen(08.09.2026 um 12:14 Uhr)
📰 IT NachrichtenMercedes VLE wird günstiger: Das sind die neuen Preise(08.09.2026 um 13:08 Uhr)

🔧 Programmierung 🕛 vor 3 Monaten 7 Min Lesezeit
0

Stop scattering LLM SDK/API calls across your codebase. Here is the 2-file rule that fixed mine

↗ Quelle (dev.to)
🗣️ Stimme:
📑 Inhaltsübersicht

I upgraded an LLM SDK and expected a routine version bump.



Instead I had to touch 15+ files, fix breaking changes across four providers, and spend the rest of the day hoping I had not missed one. That was the second time it happened. I knew there would be a third.



If you have ever shipped a production LLM system, you probably recognize the smell:




  • An SDK minor version renames maxTokens to maxOutputTokens and now 15 files break at runtime, not compile time.

  • Switching one classification task from Claude to a cheaper model means editing import paths and type signatures in business logic.

  • You have written classifyEmail, scoreLead, triageTicket, and categorizeRequest, and they are all the same function with a different prompt string.



This is not an SDK problem. It is an architecture problem. Here is how I fixed it, and the open-source library that came out of it.






The 2-file rule



I made one rule: only two files in the entire codebase are allowed to import the LLM SDK. One adapter that translates my interface into SDK calls, and one provider registry that creates clients from config. Everything else talks to a typed interface and has no idea which provider, model, or SDK is in play.



This is just hexagonal architecture (ports and adapters, per Alistair Cockburn) applied to LLMs. You already do this for databases and message queues. Nobody scatters raw SQL across business logic. LLM providers belong in the same category. They are infrastructure, not application logic.



The dependency flow goes from this:




CODE
Application code
├─ direct SDK call
├─ direct SDK call
└─ model router leaking SDK types






To this:




CODE
Application code
↓ llmClassify(), llmDraft(), llmScore() ...
Capabilities

LLM Port (TypeScript interface, zero SDK imports)

Adapters + Provider Registry (the only 2 files that touch the SDK)

OpenAI / Anthropic / Gemini / Ollama / Vercel AI SDK






The caller says what it wants (taskType: "triage"). The infrastructure decides how. No model name parameter. No provider parameter. Policy is deferred to config.






The proof: an SDK upgrade that did not hurt



The real test came during a major SDK version jump with breaking changes (maxTokens to maxOutputTokens, CoreMessage to ModelMessage, and more). Here is what the migration commit looked like:




  • 2 files changed (the adapter and the agent runtime), plus 1 minor fix.

  • All 18 activity files unchanged.

  • All 10 agent files unchanged.

  • The final migration deleted more code than it added: 192 insertions, 688 deletions.



28 out of 31 files did not change, because they do not know the SDK exists. If a core dependency upgrade touches your business logic, your boundaries are wrong.






The part that surprised me: the same 7 operations, everywhere



I started this to isolate the SDK. Then I noticed the bigger problem. I was not calling LLMs in 21 different places. I was reimplementing the same seven cognitive operations with slight variations:
















































Capability What you give it What you get back
Classify content + rubric one label from an enum + reasoning
Score content + rubric + axes numeric ratings per axis
Draft persona + situation longer text in a chosen tone
Summarize long content + length target shorter content, key points kept
Extract unstructured text + schema a typed structured object
Plan goal + constraints an ordered list of steps
Analyze evidence + question recommendation with caveats


Five activities classified content with five different prompt structures. Nine drafted messages with nine different tone injections. Same operation, no shared implementation. When I improved one classification prompt, I had to remember to update four other places. I usually forgot.



You are not writing 47 prompts. You are writing 7 prompts, 47 times, with slightly different ingredients.



So I extracted them into capability factories. A factory takes the invariant parts (schema, rubric, model routing, observability hooks) and returns a function that takes only the varying part (the content):




CODE
import { createClassifier } from "@llm-ports/capabilities";
import { z } from "zod";

const IntentSchema = z.object({
intent: z.enum(["question", "request", "complaint", "feedback", "other"]),
urgency: z.enum(["low", "normal", "high"]),
reasoning: z.string(),
});

export const classifyIntent = createClassifier({
port: llm, // your provider-agnostic port
schema: IntentSchema,
schemaName: "user-intent",
rubric: `
question: asking for information
request: wants something done
complaint: reports a problem
feedback: opinion only
other: anything else
`
,
});






Then every call site, across all your files, is the same shape:




CODE
const result = await classifyIntent({ content: userMessage });
// { intent: "request", urgency: "high", reasoning: "..." } fully typed






Improve the rubric once, and every classifier in the system gets better. Prompt engineering stops being scattered strings and becomes a reusable system asset.






llm-ports



I pulled this pattern out of my production system and shipped it as an open-source, MIT-licensed TypeScript library: llm-ports.






60 second setup



Configure providers in .env:




CODE
LLM_PROVIDER_FAST=anthropic|<model>|cost:50/day
LLM_PROVIDER_SMART=anthropic|<model>|cost:200/day
LLM_TASK_ROUTE_TRIAGE=fast,smart






Create the port once:




CODE
import { createRegistryFromEnv } from "@llm-ports/core";
import { createAnthropicAdapter } from "@llm-ports/adapter-anthropic";

export const llm = createRegistryFromEnv({
adapters: {
anthropic: createAnthropicAdapter({ apiKey: process.env.ANTHROPIC_API_KEY! }),
},
}).getPort();






Use it anywhere, with no SDK imports:




CODE
const result = await llm.generateText({
taskType: "triage",
prompt: "Classify this email...",
});






The registry selects the right model for the task, enforces cost limits, falls back through the provider chain on budget exhaustion, and records usage, cost, and latency.






What you get





  • Multi-provider routing across OpenAI, Anthropic, Google Gemini, Ollama, and the Vercel AI SDK.


  • Fallback chains when a provider exceeds budget.


  • USD-based cost gating with hourly, daily, and monthly limits. Budget exhaustion is a typed exception, not a surprise invoice.


  • The 7 capability factories: createClassifier, createScorer, createDrafter, createSummarizer, createExtractor, createPlanner, createAnalyzer.


  • Validation recovery for structured output. If a model returns invalid JSON or a wrong enum, it auto-retries with a correction prompt. Bad output stops at the capability boundary instead of leaking downstream.


  • Tool-use safety primitives: destructive markers, confirmation-required actions, max output byte limits.


  • Observability hooks for cost, latency, quality, and outcomes.

  • No runtime dependency on LangChain or LlamaIndex. Core plus one adapter plus capabilities is a small install footprint, strict TypeScript throughout.






How it compares





  • Vercel AI SDK unifies provider calls. llm-ports adds the registry, fallback chains, USD cost gating, validation recovery, and capability factories on top. There is an adapter to migrate from it incrementally.


  • LiteLLM is a Python-first HTTP proxy. llm-ports is TypeScript and runs in-process, no extra network hop.


  • Portkey is a commercial hosted gateway. llm-ports is MIT and has no hosted dependency.


  • LangChain.js is a framework. llm-ports is a lightweight architecture and control layer, not a framework you build your whole app inside.






When to use it (and when not to)



Use it if you run 2+ providers (or might switch later), have 5+ call sites, keep getting bitten by SDK upgrades, or need cost control and centralized quality tracking.



Skip it if you have 1 or 2 LLM calls, you are just prototyping, or you want a full agent framework with a built-in memory and RAG layer.






Honest status



llm-ports is pre-release, currently at 0.1.0-alpha.5. The core architecture is stable with 250+ offline regression tests, but some adapter and agent paths are still being hardened (multi-turn agent in the Vercel adapter and retry-on-runtime-error both land in v0.2). The per-surface status is documented openly so you know what is solid before you adopt it.






Try it






CODE
npm install @llm-ports/core @llm-ports/adapter-anthropic @llm-ports/capabilities






Wie bewertest du diesen Beitrag?
1 Klick Feedback
Teilen mit Netzwerk & Team:

Community-Analysen & Experten-Meinungen 0

Verfasse deine eigene Analyse, teile Workarounds oder diskutiere diesen Vorfall im Blog.
Noch keine Community-Analyse verfasst. Markiere einen Textabschnitt oder klicke oben auf Eigene Analyse verfassen“!
Community Pulse: Relevanz-Einschätzung
1 Klick Experten-Votum
🔴 Akute Relevanz 0%
🟡 In Evaluierung 0%
🟢 Keine Auswirkung 0%
Spannende Innovation 0%
Verwandte Story-Cluster & Quellen (Vektor-KI)
Port 8095 Engine
2 Quellen
T-Mobile will give you the iPhone 18 Pro for free – here’s how to preorder
1 Quelle
Asus: Erster Mini-Desktop mit Snapdragon X2 Elite - zu Mondpreisen
1 Quelle
Luna: Diese 11 neuen Spiele verschenkt Amazon im September 2026
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten Stop scattering LLM SDK/API calls across your codebase. Here is the 2-file rule that fixed mine

Thematisch verwandte Begriffe: Stop, scattering, SDKAPI, calls · 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 ...