docs: update web search examples to gpt-5.6-luna (#3589)

This commit is contained in:
Yashwarhade8010
2026-08-16 23:45:02 -07:00
committed by GitHub
parent a64a444a17
commit 3b791bb334
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -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);
@@ -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);