rekaai
Reka Flash 3
Reka Flash 3 is a general-purpose, instruction-tuned large language model with 21 billion parameters, developed by Reka. It excels at general chat, coding tasks, instruction-following, and function calling. Featuring a...
Context
66k tokens
Input / 1M tokens
$0.10
Output / 1M tokens
$0.20
Benchmark
—
Pricing
Input tokens$0.10 per 1M tokens
Output tokens$0.20 per 1M tokens
Technical details
Model IDrekaai/reka-flash-3
Context window66k tokens
Input modalitiestext
Output modalitiestext
TokenizerOther
Max output tokens65,536
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: 'rekaai/reka-flash-3',
messages: [{ role: 'user', content: 'Hello!' }],
})