O
o1
4k ContextTextPopular
OpenAI's o1. focused AI solutions.
Technical Specifications
Context Window
4K
Max Output
4,096 tokens
Knowledge Domain
Chat, Text
Provider
OpenAI
Quick Start Guide
example.tsTypeScript
import OpenAI from "openai";
const openai = new OpenAI({
baseURL: "https://api.okrouter.com/v1",
apiKey: "<YOUR_OKROUTER_KEY>",
});
async function main() {
const completion = await openai.chat.completions.create({
model: "o1",
messages: [
{ role: "user", content: "Hello! What can you do?" }
],
});
console.log(completion.choices[0].message);
}
main();Getting started with o1 is easy. Since OkRouter is fully compatible with the OpenAI SDK, you can use existing libraries to access this model immediately. o1 is fully compatible with the OpenAI Chat Completions API. distinctive features include Standard context handling and Text support.