Blog

GPT-5.3 Chat Is Now Available in Puter.js

On this page

Puter.js now supports GPT-5.3 Chat, OpenAI's latest conversational model update also known as GPT-5.3 Instant. Add it to your application for free without needing an OpenAI developer account or API key.

What is GPT-5.3 Chat?

GPT-5.3 Chat (GPT-5.3 Instant) is OpenAI's newest update to ChatGPT's most-used conversational model, released on March 3, 2026. Rather than pushing raw capability, this release focuses on making everyday interactions smoother and more natural. Key highlights include:

  • 26.8% fewer hallucinations when using the web and 19.7% when relying on internal knowledge
  • 22.5% reduction in user-flagged errors with web search enabled
  • Less preachy and cautious — delivers direct answers instead of lengthy refusals or overly rigid responses
  • Better web search integration — richer and better-contextualized results when browsing

GPT-5.3 Chat addresses behavioral issues from its predecessor GPT-5.2 Instant, cutting down on unnecessary caveats and overly declarative phrasing that users found frustrating.

Examples

Basic Chat

puter.ai.chat("What are the health benefits of intermittent fasting?", {
    model: "gpt-5.3-chat"
})

Conversational Q&A

puter.ai.chat([
    { role: "user", content: "I'm planning a trip to Tokyo next month." },
    { role: "assistant", content: "Tokyo is a great choice! What kind of activities are you interested in?" },
    { role: "user", content: "I love street food and historical sites." }
], { model: "gpt-5.3-chat" })

Streaming Responses

const response = await puter.ai.chat(
    "Explain how neural networks learn in simple terms",
    { model: "gpt-5.3-chat", stream: true }
);

for await (const part of response) {
    puter.print(part?.text);
}

Get Started Now

Just add one library to your project:

// npm install @heyputer/puter.js
import { puter } from '@heyputer/puter.js';

Or add one script tag to your HTML:

<script src="https://js.puter.com/v2/"></script>

No API keys or OpenAI developer account needed. Start building with GPT-5.3 Chat immediately.

Learn more:

Free, Serverless AI and Cloud

Start creating powerful web applications with Puter.js in seconds!

Get Started Now

Read the Docs Try the Playground