Feature × Audience

How do startups route model requests with Plugsky?

Startups route with Plugsky by starting on the balanced default and adding rules only when usage data justifies them: cost_saver for development and batch, a token threshold for long inputs, and a pinned model for anything customer-critical. Because routing is configuration rather than infrastructure, it costs an afternoon rather than a platform team.

Key facts

Router modelmodel="plugsky-fusion" includes a balanced default out of the box (live)
Strategiescost_saver, balanced, max_quality and custom rules
ScopingPer workspace, API key or request — set dev and prod apart
OverridesExplicit model names bypass routing
Free planTwo free AI models — plugsky-micro and plugsky-lite — with no card
Trial14-day full-access trial for paid-tier models
Cost shapeFlat self-serve plans; no per-token charges on self-serve
RoadmapClassifier routing /v1/plugsky/route (model=auto) is coming soon

TL;DR

  • Ship on balanced first; it handles most early-stage traffic well.
  • Give dev and CI keys cost_saver so experiments do not matter.
  • Add a long-input rule when you start handling documents.
  • Pin models for customer-critical endpoints you must reproduce.
  • Keep flat pricing so growth does not arrive with a bill spike.

How it works, step by step

  1. Turn on model="plugsky-fusion" with the default balanced strategy and ship.
  2. Separate keys per environment and put development on cost_saver.
  3. Watch which requests escalate for two weeks before writing any rule.
  4. Add one rule at a time — start with a token threshold for long inputs.
  5. Pin a fixed model for any endpoint where customers would notice variation.
  6. Revisit strategies monthly; remove rules that no longer earn their place.
1Turn onmodel="plugsky-fusion"with the default2Separate keys perenvironment and putdevelopment on3Watch whichrequests escalatefor two weeks4Add one rule at atime — start with atoken threshold for5Pin a fixed modelfor any endpointwhere customers6Revisit strategiesmonthly; removerules that no

Try it yourself

Open the AI model selector →

The default that just works

Early-stage teams should not spend a sprint building a router. The balanced strategy is the default for a reason: mid-tier for most calls, cheap for trivial prompts, strong for hard ones. Turning it on is a model-string change, and it behaves sensibly across the messy mix of prompts a young product actually receives.

Keep it boring until you have data. Routing logs tell you which requests escalated and which stayed cheap; that distribution, not intuition, is what should drive your first rule.

The first rules worth writing

When you do add rules, start with the ones that pay for themselves immediately. A token-threshold rule keeps long inputs off small models. A development-key strategy keeps CI and demos on cost_saver. A pinned model on your signup or billing assistant gives reproducibility where a customer will notice.

  • One at a time: add a rule, watch the logs, keep it only if the distribution improves.
  • Clear markers: token count, environment, key and tool use are reliable; sentiment or topic heuristics are not.
  • Instant rollback: an explicit model name bypasses routing, so you can always fall back.

Cost predictability while you scale

The startup-specific risk of multi-model systems is that experimentation multiplies spend. Flat self-serve plans with unlimited fair-use usage and no per-token charges remove that risk: you can test strategies without watching a meter, and a growth spurt changes request volume rather than your invoice shape.

The free plan with plugsky-micro and plugsky-lite is enough to build the first version, and the 14-day full-access trial covers benchmarking paid tiers. Keep the OpenAI-compatible endpoint in place, and if you outgrow self-serve, the same API scales with you rather than forcing a rewrite.

Honest comparison

ConcernPlugsky routingBuilding a routerOne cheap model
Time to valueOne model stringWeeks of workImmediate
Quality on hard promptsEscalates by strategyDepends on your logicCapped by model
Dev versus prodStrategies per keyCustom flagsSame model everywhere
ObservabilityModel and rule logged per requestYou build itOne model
Cost shapeFlat monthly, fair-use RPMPer-token infrastructurePer token or flat

Frequently asked questions

Do I need routing on day one?

No. Start with balanced and ship. Add rules when the logs show a pattern worth optimising, not before.

What is the cheapest setup?

The free plan includes plugsky-micro and plugsky-lite with no card; development keys can then run cost_saver on paid plans during the 14-day full-access trial.

How do I keep CI costs down?

Give development and CI their own API key with a cost_saver strategy, separate from production keys.

Can I change models later?

Yes. Explicit model names bypass routing, and the API stays OpenAI-compatible, so model changes remain a string change.

Will routing hide quality problems?

No, the logs show which model answered each request. If a cheap model is answering something it should not, the escalation pattern makes it visible.

What if we raise a round and scale fast?

Self-serve plans are flat with unlimited fair-use usage, so scaling traffic changes your request rate rather than per-token cost. Enterprise terms cover higher volumes.

Is there a classifier mode?

It is coming soon as POST /v1/plugsky/route with model=auto. Today, balanced plus explicit rules covers the same ground manually.