@browserbasehq/stagehand 3.0.6-alpha-34e7e5b292f5e6af6efc0da60118663310c5f718 → 3.0.6-alpha-6255e4cc9f8f9177b881b9c4750f47d6a6f9a95a
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.
- package/dist/index.js +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -179,7 +179,7 @@ var __forAwait = (obj, it, method) => (it = obj[__knownSymbol("asyncIterator")])
|
|
|
179
179
|
var STAGEHAND_VERSION;
|
|
180
180
|
var init_version = __esm({
|
|
181
181
|
"lib/version.ts"() {
|
|
182
|
-
STAGEHAND_VERSION = "3.0.6-alpha-
|
|
182
|
+
STAGEHAND_VERSION = "3.0.6-alpha-6255e4cc9f8f9177b881b9c4750f47d6a6f9a95a";
|
|
183
183
|
}
|
|
184
184
|
});
|
|
185
185
|
|
|
@@ -36206,7 +36206,7 @@ var AISdkClient = class extends LLMClient {
|
|
|
36206
36206
|
);
|
|
36207
36207
|
let objectResponse;
|
|
36208
36208
|
const isGPT5 = this.model.modelId.includes("gpt-5");
|
|
36209
|
-
const
|
|
36209
|
+
const usesLowReasoningEffort = this.model.modelId.includes("gpt-5.1") || this.model.modelId.includes("gpt-5.2");
|
|
36210
36210
|
if (options.response_model) {
|
|
36211
36211
|
const llmRequestId2 = (0, import_uuid5.v7)();
|
|
36212
36212
|
const promptPreview2 = formatLlmPromptPreview(options.messages, {
|
|
@@ -36228,7 +36228,7 @@ var AISdkClient = class extends LLMClient {
|
|
|
36228
36228
|
openai: {
|
|
36229
36229
|
textVerbosity: "low",
|
|
36230
36230
|
// Making these the default for gpt-5 for now
|
|
36231
|
-
reasoningEffort:
|
|
36231
|
+
reasoningEffort: usesLowReasoningEffort ? "low" : "minimal"
|
|
36232
36232
|
}
|
|
36233
36233
|
} : void 0
|
|
36234
36234
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@browserbasehq/stagehand",
|
|
3
|
-
"version": "3.0.6-alpha-
|
|
3
|
+
"version": "3.0.6-alpha-6255e4cc9f8f9177b881b9c4750f47d6a6f9a95a",
|
|
4
4
|
"description": "An AI web browsing framework focused on simplicity and extensibility.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|