About o1
o1 is an LLM designed for complex reasoning tasks, particularly excelling in science, mathematics, and coding. It generates chains of thought before responding, making it effective for tasks requiring detailed analysis and problem-solving.
Some noteworthy use cases of o1 include generating and debugging complex code and handling tasks that require extensive reasoning and step-by-step solutions.
| Metric | Value |
|---|---|
| Context Length | 200,000 tokens |
| Multilingual | Yes |
Ready to build with o1?
Try o1 in the Workbench to prompt it, compare outputs, and iterate on prompts without writing any code. When you're ready to ship, call the same model from our API and build your own apps on top of it.
curl -sSf -X POST https://hub.oxen.ai/api/ai/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OXEN_API_KEY" \
-d '{
"model": "o1",
"messages": [
{
"role": "user",
"content": "Try sending a message."
}
]
}'API endpoint
See the API reference for request and response formats.
POST
https://hub.oxen.ai/api/ai/chat/completions