From 401b6066b36551f01b2ca6d50a9c02e15681ad77 Mon Sep 17 00:00:00 2001 From: Reynaldi Chernando <12949382+reynaldichernando@users.noreply.github.com> Date: Tue, 18 Aug 2026 23:36:23 +0700 Subject: [PATCH] Use gpt 5.6 luna as default for docs (#3602) --- src/docs/src/AI.md | 6 +++--- src/docs/src/AI/chat.md | 6 +++--- src/docs/src/examples.js | 4 ++-- src/docs/src/index.md | 8 ++++---- src/docs/src/playground/examples/ai-chatgpt.html | 4 ++-- src/docs/src/playground/examples/ai-gpt-vision.html | 4 ++-- src/docs/src/playground/examples/intro-chatgpt.html | 4 ++-- src/docs/src/playground/examples/intro-gpt-vision.html | 4 ++-- src/docs/src/supported-platforms.md | 2 +- 9 files changed, 21 insertions(+), 21 deletions(-) diff --git a/src/docs/src/AI.md b/src/docs/src/AI.md index 3b9aa8544..7b227ad2b 100644 --- a/src/docs/src/AI.md +++ b/src/docs/src/AI.md @@ -22,14 +22,14 @@ You can use AI models from various providers to perform tasks such as chat, text
-#### Chat with GPT-5.4 nano +#### Chat with GPT-5.6 Luna ```html;ai-chatgpt @@ -208,7 +208,7 @@ These AI features are supported out of the box when using Puter.js: You can see various Puter.js AI features in action from the following examples: - AI Chat - - [Chat with GPT-5.4 nano](/playground/ai-chatgpt/) + - [Chat with GPT-5.6 Luna](/playground/ai-chatgpt/) - [Image Analysis](/playground/ai-gpt-vision/) - [Stream the response](/playground/ai-chat-stream/) - [Function Calling](/playground/ai-function-calling/) diff --git a/src/docs/src/AI/chat.md b/src/docs/src/AI/chat.md index c9054d7fe..f46b23768 100755 --- a/src/docs/src/AI/chat.md +++ b/src/docs/src/AI/chat.md @@ -387,14 +387,14 @@ for await (const part of resp) { ## Examples -Ask GPT-5.4 nano a question +Ask GPT-5.6 Luna a question ```html;ai-chatgpt @@ -410,7 +410,7 @@ for await (const part of resp) { diff --git a/src/docs/src/examples.js b/src/docs/src/examples.js index ef460f92a..f71e041a1 100644 --- a/src/docs/src/examples.js +++ b/src/docs/src/examples.js @@ -44,8 +44,8 @@ const examples = [ title: 'AI', children: [ { - title: 'Chat with GPT-5.4 nano', - description: 'Chat with GPT-5.4 nano using Puter.js AI API. Run and experiment with this chatbot example directly in the playground.', + title: 'Chat with GPT-5.6 Luna', + description: 'Chat with GPT-5.6 Luna using Puter.js AI API. Run and experiment with this chatbot example directly in the playground.', slug: 'ai-chatgpt', source: '/playground/examples/ai-chatgpt.html', }, diff --git a/src/docs/src/index.md b/src/docs/src/index.md index 39523ea9b..173e4657b 100755 --- a/src/docs/src/index.md +++ b/src/docs/src/index.md @@ -166,15 +166,15 @@ Puter.js is powered by [Puter](https://github.com/HeyPuter/puter), the open-sour
-#### Chat with GPT-5.4 nano +#### Chat with GPT-5.6 Luna ```html;intro-chatgpt @@ -190,7 +190,7 @@ Puter.js is powered by [Puter](https://github.com/HeyPuter/puter), the open-sour diff --git a/src/docs/src/playground/examples/ai-chatgpt.html b/src/docs/src/playground/examples/ai-chatgpt.html index 8ea8153e6..c232d5581 100755 --- a/src/docs/src/playground/examples/ai-chatgpt.html +++ b/src/docs/src/playground/examples/ai-chatgpt.html @@ -5,9 +5,9 @@ // Loading ... puter.print(`Loading...`); - // Chat with GPT-5.4 nano + // Chat with GPT-5.6 Luna puter.ai.chat(`What is life?`, { - model: 'gpt-5.4-nano', + model: 'gpt-5.6-luna', }).then(puter.print); diff --git a/src/docs/src/playground/examples/ai-gpt-vision.html b/src/docs/src/playground/examples/ai-gpt-vision.html index b4954a3a8..bfafe8015 100755 --- a/src/docs/src/playground/examples/ai-gpt-vision.html +++ b/src/docs/src/playground/examples/ai-gpt-vision.html @@ -6,10 +6,10 @@ // Loading ... puter.print(`Loading...`); - // Image analysis with GPT-5.4 nano + // Image analysis with GPT-5.6 Luna puter.ai .chat(`What do you see?`, `https://assets.puter.site/doge.jpeg`, { - model: "gpt-5.4-nano", + model: "gpt-5.6-luna", }) .then(puter.print); diff --git a/src/docs/src/playground/examples/intro-chatgpt.html b/src/docs/src/playground/examples/intro-chatgpt.html index 8ea8153e6..c232d5581 100755 --- a/src/docs/src/playground/examples/intro-chatgpt.html +++ b/src/docs/src/playground/examples/intro-chatgpt.html @@ -5,9 +5,9 @@ // Loading ... puter.print(`Loading...`); - // Chat with GPT-5.4 nano + // Chat with GPT-5.6 Luna puter.ai.chat(`What is life?`, { - model: 'gpt-5.4-nano', + model: 'gpt-5.6-luna', }).then(puter.print); diff --git a/src/docs/src/playground/examples/intro-gpt-vision.html b/src/docs/src/playground/examples/intro-gpt-vision.html index b4954a3a8..bfafe8015 100755 --- a/src/docs/src/playground/examples/intro-gpt-vision.html +++ b/src/docs/src/playground/examples/intro-gpt-vision.html @@ -6,10 +6,10 @@ // Loading ... puter.print(`Loading...`); - // Image analysis with GPT-5.4 nano + // Image analysis with GPT-5.6 Luna puter.ai .chat(`What do you see?`, `https://assets.puter.site/doge.jpeg`, { - model: "gpt-5.4-nano", + model: "gpt-5.6-luna", }) .then(puter.print); diff --git a/src/docs/src/supported-platforms.md b/src/docs/src/supported-platforms.md index b5ddbb8c0..f632c739d 100644 --- a/src/docs/src/supported-platforms.md +++ b/src/docs/src/supported-platforms.md @@ -51,7 +51,7 @@ const puter = require("@heyputer/puter.js");