aion-labs
AionLabs: Aion-1.0
Aion-1.0 is a multi-model system designed for high performance across various tasks, including reasoning and coding. It is built on DeepSeek-R1, augmented with additional models and techniques such as Tree...
Context
131k tokens
Input / 1M tokens
$4
Output / 1M tokens
$8
Benchmark
—
Pricing
Input tokens$4 per 1M tokens
Output tokens$8 per 1M tokens
Technical details
Model IDaion-labs/aion-1.0
Context window131k tokens
Input modalitiestext
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: 'aion-labs/aion-1.0',
messages: [{ role: 'user', content: 'Hello!' }],
})