kilo-autoVision
Auto Small
Automatically routes your request to a small model.
Context
262k tokens
Input / 1M tokens
$0.05
Output / 1M tokens
$0.40
Benchmark
—
Pricing
Input tokens$0.05 per 1M tokens
Output tokens$0.40 per 1M tokens
Cache read$0.01 per 1M tokens
ImageFree per image
Technical details
Model IDkilo-auto/small
Context window262k tokens
Input modalitiestext, image
Output modalitiestext
TokenizerOther
Max output tokens32,768
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: 'kilo-auto/small',
messages: [{ role: 'user', content: 'Hello!' }],
})