openrouterVision
Auto Router (Beta)
Auto Router (Beta) is a task-aware router from OpenRouter. It classifies each request, then routes it the [most popular model](/rankings#task-spend) for that task based on aggregate spend, filtered by your...
Context
2M tokens
Input / 1M tokens
$-1000000
Output / 1M tokens
$-1000000
Benchmark
—
Pricing
Input tokens$-1000000 per 1M tokens
Output tokens$-1000000 per 1M tokens
Technical details
Model IDopenrouter/auto-beta
Context window2M tokens
Input modalitiestext, image, audio, file, video
Output modalitiestext, image
TokenizerRouter
Use with MegaBrain
import OpenAI from 'openai'
const client = new OpenAI({
baseURL: 'https://getmegabrain.com/api/gateway/v1',
apiKey: process.env.MEGABRAIN_API_KEY,
})
const response = await client.chat.completions.create({
model: 'openrouter/auto-beta',
messages: [{ role: 'user', content: 'Hello!' }],
})