openrouter
OpenRouter: Fusion
Fusion turns your prompt into a small multi-model deliberation. A panel of expert models (see below) analyzes your prompt in parallel with web search and web fetch enabled, then a...
Context
1M 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/fusion
Context window1M tokens
Input modalitiestext
Output modalitiestext
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/fusion',
messages: [{ role: 'user', content: 'Hello!' }],
})