zan-browser 1.3.17 → 1.3.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/ai.js +2 -2
  2. package/package.json +1 -1
package/dist/ai.js CHANGED
@@ -57,7 +57,7 @@ Respond with a JSON object (no markdown):
57
57
  }`;
58
58
  const response = await this.client.messages.create({
59
59
  model: this.model,
60
- max_tokens: 256,
60
+ max_tokens: 512,
61
61
  messages: [{ role: "user", content: prompt }],
62
62
  });
63
63
  const text = response.content[0].type === "text" ? response.content[0].text : "";
@@ -98,7 +98,7 @@ Respond with JSON (no markdown):
98
98
  }`;
99
99
  const response = await this.client.messages.create({
100
100
  model: this.model,
101
- max_tokens: 256,
101
+ max_tokens: 512,
102
102
  messages: [
103
103
  {
104
104
  role: "user",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zan-browser",
3
- "version": "1.3.17",
3
+ "version": "1.3.18",
4
4
  "description": "AI-powered cloud browser library with observe-first, screenshot-as-fallback pattern",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",