About GPT 4o
GPT-4o is a multimodal LLM designed for real-time reasoning across text, audio, and visual inputs. It excels in natural human-computer interaction, offering rapid audio response times and improved performance on non-English languages and vision tasks compared to its predecessors.
Some other noteworthy features of GPT-4o include real-time translation, image generation, and emotional content processing in audio outputs.
| Metric | Value |
|---|---|
| Context Length | 128,000 tokens |
| Multilingual | Yes |
Ready to build with GPT 4o?
Try GPT 4o 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": "gpt-4o",
"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