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);