@browserbasehq/stagehand 3.0.7-alpha-05f5580937c3c157550e3c25ae6671f44f562211 → 3.0.7-alpha-e0e22e06bc752a8ffde30f3dbfa58d91e24e6c09
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.d.ts +1 -0
- package/dist/index.js +4 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1993,6 +1993,7 @@ type AgentConfig = {
|
|
|
1993
1993
|
* - 'dom' (default): Uses DOM-based tools (act, fillForm) for structured interactions
|
|
1994
1994
|
* - 'hybrid': Uses coordinate-based tools (click, type, dragAndDrop, clickAndHold, fillFormVision)
|
|
1995
1995
|
* for visual/screenshot-based interactions
|
|
1996
|
+
* @experimental hybrid mode requires `experimental: true` in Stagehand constructor
|
|
1996
1997
|
*/
|
|
1997
1998
|
mode?: AgentToolMode;
|
|
1998
1999
|
};
|
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.7-alpha-
|
|
182
|
+
STAGEHAND_VERSION = "3.0.7-alpha-e0e22e06bc752a8ffde30f3dbfa58d91e24e6c09";
|
|
183
183
|
}
|
|
184
184
|
});
|
|
185
185
|
|
|
@@ -65521,6 +65521,9 @@ function validateExperimentalFeatures(options) {
|
|
|
65521
65521
|
if (hasIntegrations || hasTools) {
|
|
65522
65522
|
features.push("MCP integrations and custom tools");
|
|
65523
65523
|
}
|
|
65524
|
+
if ((agentConfig == null ? void 0 : agentConfig.mode) === "hybrid") {
|
|
65525
|
+
features.push("hybrid mode");
|
|
65526
|
+
}
|
|
65524
65527
|
if (!(agentConfig == null ? void 0 : agentConfig.cua) && (isStreaming || (agentConfig == null ? void 0 : agentConfig.stream))) {
|
|
65525
65528
|
features.push("streaming");
|
|
65526
65529
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@browserbasehq/stagehand",
|
|
3
|
-
"version": "3.0.7-alpha-
|
|
3
|
+
"version": "3.0.7-alpha-e0e22e06bc752a8ffde30f3dbfa58d91e24e6c09",
|
|
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",
|