Ship a Full-Stack App with One Prompt

Copy this prompt into your AI coding agent, or open it in one below.

Give this to your AI Create a to-do list app using Puter.js

Coding manually? see the guide

Blog

GPT Image 1.5 Is Now Available in Puter.js

On this page

What is GPT Image 1.5?

OpenAI just rolled out the new ChatGPT Images experience powered by GPT Image 1.5, a flagship model that makes precise edits while keeping lighting, composition, and likeness intact, and it now generates up to 4× faster!

We are excited to announce that Puter.js now supports GPT Image 1.5, allowing you to generate and edit images with GPT Image 1.5 directly from your frontend code without needing an OpenAI API key.

Example

As always, Puter.js is completely serverless and handles auth, rate limits, and retries, no keys or servers needed. Here's an example of how to use GPT Image 1.5 in Puter.js:

<html>
<body>
    <script src="https://js.puter.com/v2/"></script>
    <script>
        puter.ai.txt2img({
            prompt: "A cinematic portrait of an explorer in soft golden hour light, subtle OpenAI-blue accents, 4k",
            model: "gpt-image-1.5",
            provider: "openai",
        }).then((image) => {
            document.body.appendChild(image);
        });
    </script>
</body>
</html>

That's it! You can now generate and edit images with GPT Image 1.5 directly from your frontend code without needing an OpenAI API key.

Learn more:

Ship a Full-Stack App with One Prompt

Give this to your AI Create a to-do list app using Puter.js

Coding manually? see the guide