Exacto Variant
Curated provider routing for high-confidence output quality
The :exacto variant routes requests through a curated provider set for each supported model. It is designed for quality-sensitive workloads, especially tool-calling and agent flows where endpoint variance matters.
OpenAI SDK
import OpenAI from 'openai';
const client = new OpenAI({
baseURL: 'https://api.therouter.ai/v1',
apiKey: process.env.THEROUTER_API_KEY,
});
const completion = await client.chat.completions.create({
model: 'moonshotai/kimi-k2-0905:exacto',
messages: [
{
role: 'user',
content: 'Draft a concise incident report from this timeline.',
},
],
});Routing behavior
The curated allowlist is applied before sorting and fallback logic. You can still combine
:exacto with the models fallback array.Supported models can change as TheRouter.ai updates quality benchmarks and provider telemetry. For exact availability, check each model detail in the catalog.