openaiVision
OpenAI: GPT-4o
GPT-4o ("o" for "omni") is OpenAI's latest AI model, supporting both text and image inputs with text outputs. It maintains the intelligence level of [GPT-4 Turbo](/models/openai/gpt-4-turbo) while being twice as...
Context
128k tokens
Input / 1M tokens
$2.50
Output / 1M tokens
$10
Benchmark
—
Pricing
Input tokens$2.50 per 1M tokens
Output tokens$10 per 1M tokens
Cache read$1.25 per 1M tokens
Technical details
Model IDopenai/gpt-4o
Context window128k tokens
Input modalitiestext, image, file, pdf
Output modalitiestext
TokenizerGPT
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: 'openai/gpt-4o',
messages: [{ role: 'user', content: 'Hello!' }],
})