openaiVision
OpenAI: o1 ($$$$)
The latest and strongest model family from OpenAI, o1 is designed to spend more time thinking before responding. The o1 model series is trained with large-scale reinforcement learning to reason...
Context
200k tokens
Input / 1M tokens
$15
Output / 1M tokens
$60
Benchmark
—
Pricing
Input tokens$15 per 1M tokens
Output tokens$60 per 1M tokens
Cache read$7.50 per 1M tokens
Technical details
Model IDopenai/o1
Context window200k tokens
Input modalitiestext, image, file, pdf
Output modalitiestext
TokenizerGPT
Max output tokens100,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: 'openai/o1',
messages: [{ role: 'user', content: 'Hello!' }],
})