diff --git a/src/docs/src/AI.md b/src/docs/src/AI.md
index b75f2e5fee..a543db3a10 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 nano
+#### Chat with GPT-5.4 nano
```html;ai-chatgpt
@@ -205,7 +205,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 nano](/playground/ai-chatgpt/)
+ - [Chat with GPT-5.4 nano](/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 6edee79ef0..964bb52715 100755
--- a/src/docs/src/AI/chat.md
+++ b/src/docs/src/AI/chat.md
@@ -185,14 +185,14 @@ You can find the implementation in our [prompt caching example](/playground/ai-c
## Examples
-
Ask GPT-5 nano a question
+
Ask GPT-5.4 nano a question
```html;ai-chatgpt
@@ -208,7 +208,7 @@ You can find the implementation in our [prompt caching example](/playground/ai-c
diff --git a/src/docs/src/examples.md b/src/docs/src/examples.md
index 877cad6061..142d8bed47 100755
--- a/src/docs/src/examples.md
+++ b/src/docs/src/examples.md
@@ -13,7 +13,7 @@ description: Find examples of serverless applications built with Puter.js
-
A chat app with AI using the Puter AI module. This app is powered by OpenAI GPT-5 nano.
+
A chat app with AI using the Puter AI module. This app is powered by OpenAI GPT-5.4 nano.
@@ -62,7 +62,7 @@ description: Find examples of serverless applications built with Puter.js
-
Uses the Puter AI module to summarize a given long text. The model used in the background is GPT-5 nano.
+
Uses the Puter AI module to summarize a given long text. The model used in the background is GPT-5.4 nano.
diff --git a/src/docs/src/index.md b/src/docs/src/index.md
index aea86c9afa..5860b7a6de 100755
--- a/src/docs/src/index.md
+++ b/src/docs/src/index.md
@@ -164,15 +164,15 @@ Puter.js is powered by [Puter](https://github.com/HeyPuter/puter), the open-sour
-#### Chat with GPT-5 nano
+#### Chat with GPT-5.4 nano
```html;intro-chatgpt
@@ -188,7 +188,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 e18851ebd9..8ea8153e6a 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 nano
+ // Chat with GPT-5.4 nano
puter.ai.chat(`What is life?`, {
- model: 'gpt-5-nano',
+ model: 'gpt-5.4-nano',
}).then(puter.print);