@mastra/stagehand 0.3.1 → 0.3.2-alpha.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @mastra/stagehand
2
2
 
3
+ ## 0.3.2-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Added a `STAGEHAND_MODEL_PROVIDERS` export listing the model providers Stagehand can resolve, so callers can validate a model before starting a browser: ([#20993](https://github.com/mastra-ai/mastra/pull/20993))
8
+
9
+ ```ts
10
+ import { STAGEHAND_MODEL_PROVIDERS } from '@mastra/stagehand';
11
+
12
+ const [provider] = 'anthropic/claude-sonnet-4-5'.split('/');
13
+ const supported = STAGEHAND_MODEL_PROVIDERS.includes(provider);
14
+ ```
15
+
3
16
  ## 0.3.1
4
17
 
5
18
  ### Patch Changes