cd /news/artificial-intelligence/show-hn-a-slm-optimized-for-tool-cal… · home topics artificial-intelligence article
[ARTICLE · art-115358] src=blog.neurometric.ai ↗ pub= topic=artificial-intelligence verified=true sentiment=· neutral

Show HN: A SLM Optimized for Tool Calling

Neurometric released a small language model (SLM) optimized for tool calling, available on TrustedRouter at $0.01 per million input tokens and $0.10 per million output tokens, claiming it reduces agent cost per turn by 70–90% and improves schema reliability. The model is designed to handle tool selection and schema binding, allowing teams to offload these tasks from larger reasoning models to cut costs and latency.

read3 min views1 publishedAug 29, 2026
Show HN: A SLM Optimized for Tool Calling
Image: source

Today we’re making our Neurometric tool calling SLM available on TrustedRouter. It does one thing: it turns intent into valid, schema-bound tool calls. It has its own pipeline and harness tuned for that job, and nothing else. Pricing is $0.01 per million input tokens and $0.10 per million output tokens.

Most teams building agents are paying frontier-model prices for a task that does not need a frontier model. Tool selection is a narrow, highly structured problem. Treating it as one changes the economics of the whole system.

What you get #

Cost reduction on the largest line item. In a running agent, the expensive part is not reasoning. It’s context accumulation: re-sending tool definitions, past tool outputs, and environment state on every single turn. That accounts for 80–90% of agent spend in most architectures. Moving tool selection onto a small, cheap model drops cost per turn by 70–90%, and the effect compounds with every additional turn in a loop.

Lower latency end to end. Small models deliver much faster time to first token and higher generation throughput. In multi-step agents, 30–40% of wall-clock time disappears into inter-call orchestration overhead rather than useful work. Shortening each hop shortens the entire chain. Users experience this as an agent that feels responsive instead of one that appears to stall between steps.

Higher schema reliability. A model fine-tuned exclusively on JSON schema adherence produces fewer syntax errors, fewer missing required arguments, and fewer hallucinated parameters than a general-purpose model juggling reasoning, tone, and format compliance in a single pass. Specialization beats breadth here. Fewer malformed calls also means fewer retries, which is a second-order cost and latency win.

Tighter control over what leaves your perimeter. Tool schemas are a description of your internal systems: database fields, endpoint names, argument semantics. Isolating schema binding in a dedicated small model lets you keep those definitions out of the context you send to a general-purpose provider, and gives you a deployment story that fits inside a VPC or on-prem environment when that matters.

How to use it #

Four patterns cover most of what we’ve seen work.

Intent router (fast path). Put the model at the entry point of your pipeline. Standard single-turn requests such as “look up user ID 1234” or “fetch local weather” go straight to it, which generates the API payload and executes. Your reasoning model never sees the request. In most production agents, a large majority of turns look like this.

Planner/executor split. Use a large reasoning model strictly to decompose a complex problem into natural-language sub-goals. Hand each sub-goal to the small model, which converts the instruction into valid arguments and calls the tool. The expensive model does planning, which is what it’s good at. The cheap model does binding, which is what it’s good at.

Structured output compiler. Let your reasoning model emit its decision as lightweight text rather than strict JSON. Feed that text to the small model to map intent onto schema-bound parameters. This removes a real failure mode, where a reasoning model degrades its own reasoning because it is simultaneously trying to satisfy a format constraint.

Speculative tool generation. Fire the small model in parallel to predict likely tool calls from the raw user input while your primary model is still drafting its strategy. When the prediction matches, you’ve already paid the latency. At these prices, speculating and discarding is cheap enough to be a rounding error.

Getting started #

The model is live on TrustedRouter now. If you’re already routing through TrustedRouter, you can point tool-calling traffic at it and compare against your current path directly, on your own workloads.

── more in #artificial-intelligence 4 stories · sorted by recency
── more on @neurometric 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/show-hn-a-slm-optimi…] indexed:0 read:3min 2026-08-29 ·