OpenAI
在线

GPT-5.3 Codex

Optimized for code generation and technical tasks. Cost-efficient choice for developer workflows.

模型 ID: tokenfast/gpt-5.3-codex

规格

上下文窗口

128K Token

最大输出

16.4K Token

输入价格

$1.58 / 1M

输出价格

$12.60 / 1M

能力

Chat
Code
Functions
JSON Mode

价格对比

看看相对官方价格能节省多少。

指标官方价格我们的价格节省
输入(每 1M Token)$1.75$1.5810% 折扣
输出(每 1M Token)$14.00$12.6010% 折扣

快速开始

通过我们的 OpenAI 兼容 API 端点调用此模型。

import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://api.yourdomain.com/v1",
  apiKey: "sk-your-api-key",
});

const response = await client.chat.completions.create({
  model: "tokenfast/gpt-5.3-codex",
  messages: [
    { role: "user", content: "Hello! What can you help me with?" },
  ],
  max_tokens: 1024,
});

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

价格汇总

输入$1.58 / 1M
输出$12.60 / 1M

厂商

OpenAI

OpenAI

AI research and deployment company behind GPT-4o, o3, and the DALL-E image generation models.

访问官网