sakanaVision
Sakana: Fugu Max
Fugu Max is the cost-performance model in Sakana AI's Fugu family. Rather than a single monolithic model, Fugu is a learned multi-agent orchestration system: a language model trained to route...
Context
1M tokens
Input / 1M tokens
$2
Output / 1M tokens
$6
Benchmark
—
Pricing
Input tokens$2 per 1M tokens
Output tokens$6 per 1M tokens
Cache read$0.25 per 1M tokens
Technical details
Model IDsakana/fugu-max
Context window1M tokens
Input modalitiestext, image, file
Output modalitiestext
TokenizerOther
Max output tokens128,000
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: 'sakana/fugu-max',
messages: [{ role: 'user', content: 'Hello!' }],
})