switchpoint
Switchpoint Router
Switchpoint AI's router instantly analyzes your request and directs it to the optimal AI from an ever-evolving library. As the world of LLMs advances, our router gets smarter, ensuring you...
Context
131k tokens
Input / 1M tokens
$0.85
Output / 1M tokens
$3.40
Benchmark
—
Pricing
Input tokens$0.85 per 1M tokens
Output tokens$3.40 per 1M tokens
Technical details
Model IDswitchpoint/router
Context window131k tokens
Input modalitiestext
Output modalitiestext
TokenizerOther
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: 'switchpoint/router',
messages: [{ role: 'user', content: 'Hello!' }],
})