OpenAIFrontier

GPT-4o

Multimodal model with strong performance at an accessible price point. Processes text, images, and audio with fast response times.

4.6(45,600 ratings)

Quick Overview

CategoryMultimodal
Context Window128K tokens
SpeedFast
Input$3 / 1M tokens
Output$10 / 1M tokens

Pricing

Simple, transparent token-based pricing. Pay only for what you use.

Input Tokens
$3
per 1M tokens
Output Tokens
$10
per 1M tokens

Capabilities

Core strengths and supported features of GPT-4o.

Text Generation
Vision
Audio
Code

Performance

Context window capacity and inference speed characteristics.

Context Window

128K

Standard context window that handles most use cases including document analysis, code review, and lengthy conversations.

Speed: Fast

Optimized for low-latency responses. Ideal for real-time applications, chatbots, and interactive experiences where response time is critical.

Quick Start

Get started with GPT-4o in just a few lines of code.

import OriginalPoint from "originalpoint";

const client = new OriginalPoint({
  apiKey: process.env.ORIGINALPOINT_API_KEY,
});

const response = await client.chat.completions.create({
  model: "gpt-4o",
  messages: [
    {
      role: "user",
      content: "Hello, how can you help me today?",
    },
  ],
  max_tokens: 1024,
});

console.log(response.choices[0].message.content);