openrouterFree
Owl Alpha
Owl Alpha is a high-performance foundation model designed for agentic workloads. Natively supports tool use, and long-context tasks, with strong performance in code generation, automated workflows, and complex instruction execution....
Context
1M tokens
Input / 1M tokens
Free
Output / 1M tokens
Free
Benchmark
—
Pricing
Input tokensFree per 1M tokens
Output tokensFree per 1M tokens
Technical details
Model IDopenrouter/owl-alpha
Context window1M tokens
Input modalitiestext
Output modalitiestext
TokenizerOther
Max output tokens262,144
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: 'openrouter/owl-alpha',
messages: [{ role: 'user', content: 'Hello!' }],
})