diff --git a/src/docs/src/AI/chat.md b/src/docs/src/AI/chat.md index def8184bf..c9054d7fe 100755 --- a/src/docs/src/AI/chat.md +++ b/src/docs/src/AI/chat.md @@ -154,7 +154,7 @@ Pass in the `tools` parameter with the type of `web_search`. ```js { - model: 'openai/gpt-5.3-chat', + model: 'openai/gpt-5.6-luna', tools: [{type: "web_search"}] } ``` @@ -603,7 +603,7 @@ for await (const part of resp) { puter.print(`Loading...`); puter.ai .chat("Summarize what the User-Pays Model is: https://docs.puter.com/user-pays-model/", { - model: "openai/gpt-5.3-chat", + model: "openai/gpt-5.6-luna", tools: [{ type: "web_search" }], }) .then(puter.print); diff --git a/src/docs/src/playground/examples/ai-web-search.html b/src/docs/src/playground/examples/ai-web-search.html index 687a72ea3..78282a646 100644 --- a/src/docs/src/playground/examples/ai-web-search.html +++ b/src/docs/src/playground/examples/ai-web-search.html @@ -5,7 +5,7 @@ puter.print(`Loading...`); puter.ai .chat("Summarize what the User-Pays Model is: https://docs.puter.com/user-pays-model/", { - model: "openai/gpt-5.3-chat", + model: "openai/gpt-5.6-luna", tools: [{ type: "web_search" }], }) .then(puter.print);