We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ae809d commit a8c54a9Copy full SHA for a8c54a9
types/stagehand.ts
@@ -46,8 +46,9 @@ export interface ConstructorParams {
46
/**
47
* The parameters to use for creating a Browserbase session
48
* See https://docs.browserbase.com/reference/api/create-a-session
49
+ * Note: projectId is optional here as it will use the main projectId parameter if not provided
50
*/
- browserbaseSessionCreateParams?: Browserbase.Sessions.SessionCreateParams;
51
+ browserbaseSessionCreateParams?: Omit<Browserbase.Sessions.SessionCreateParams, 'projectId'> & { projectId?: string };
52
53
* Enable caching of LLM responses
54
* @default true
0 commit comments