From 3b791bb3343f420697aee0df3b8b28fc46085469 Mon Sep 17 00:00:00 2001 From: Yashwarhade8010 <96858058+Yashwarhade8010@users.noreply.github.com> Date: Mon, 17 Aug 2026 12:15:02 +0530 Subject: [PATCH] docs: update web search examples to gpt-5.6-luna (#3589) --- src/docs/src/AI/chat.md | 4 ++-- src/docs/src/playground/examples/ai-web-search.html | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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);