rekaaiVision
Reka Edge
Reka Edge is an extremely efficient 7B multimodal vision-language model that accepts image/video+text inputs and generates text outputs. This model is optimized specifically to deliver industry-leading performance in image understanding,...
Context
16k tokens
Input / 1M tokens
$0.10
Output / 1M tokens
$0.10
Benchmark
—
Pricing
Input tokens$0.10 per 1M tokens
Output tokens$0.10 per 1M tokens
Technical details
Model IDrekaai/reka-edge
Context window16k tokens
Input modalitiesimage, text, video
Output modalitiestext
TokenizerOther
Max output tokens16,384
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-edge',
messages: [{ role: 'user', content: 'Hello!' }],
})