openrouterFreeVision
Free Models Router
The simplest way to get free inference. openrouter/free is a router that selects free models at random from the models available on OpenRouter. The router smartly filters for models that...
Context
200k 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/free
Context window200k tokens
Input modalitiestext, image
Output modalitiestext
TokenizerRouter
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/free',
messages: [{ role: 'user', content: 'Hello!' }],
})