Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions credentials/BrowserbaseApi.credentials.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,6 @@ export class BrowserbaseApi implements ICredentialType {
required: true,
description: 'Your Browserbase project ID',
},
{
displayName: 'Model API Key',
name: 'modelApiKey',
type: 'string',
typeOptions: { password: true },
default: '',
required: true,
description: 'API key for the AI model (e.g., Gemini API key)',
},
];

authenticate: IAuthenticateGeneric = {
Expand All @@ -49,7 +40,6 @@ export class BrowserbaseApi implements ICredentialType {
headers: {
'x-bb-api-key': '={{$credentials.browserbaseApiKey}}',
'x-bb-project-id': '={{$credentials.browserbaseProjectId}}',
'x-model-api-key': '={{$credentials.modelApiKey}}',
},
},
};
Expand Down
3 changes: 0 additions & 3 deletions nodes/Browserbase/Browserbase.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -679,7 +679,6 @@ export class Browserbase implements INodeType {
'Content-Type': 'application/json',
'x-bb-api-key': credentials.browserbaseApiKey as string,
'x-bb-project-id': credentials.browserbaseProjectId as string,
'x-model-api-key': credentials.modelApiKey as string,
};

// Helper function to make API calls
Expand Down Expand Up @@ -759,7 +758,6 @@ export class Browserbase implements INodeType {

const startBody: Record<string, unknown> = {
modelName: driverModel,
apiKey: credentials.modelApiKey as string,
browserbaseSessionCreateParams: sessionCreateParams,
};

Expand Down Expand Up @@ -796,7 +794,6 @@ export class Browserbase implements INodeType {
provider,
model: {
modelName: agentModel,
apiKey: credentials.modelApiKey as string,
},
cua: mode === 'cua' || mode === 'hybrid',
},
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "n8n-nodes-browserbase",
"version": "1.1.3",
"version": "1.2.0",
"description": "n8n community node for Browserbase",
"license": "MIT",
"homepage": "",
Expand Down