Skip to content

Commit 9bab822

Browse files
committed
add back custom smithery yanml
1 parent b3db1a0 commit 9bab822

File tree

1 file changed

+40
-1
lines changed

1 file changed

+40
-1
lines changed

smithery.yaml

Lines changed: 40 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,40 @@
1-
runtime: typescript
1+
runtime: "container"
2+
build:
3+
dockerfile: "Dockerfile"
4+
dockerBuildPath: "."
5+
startCommand:
6+
type: "http"
7+
configSchema:
8+
type: "object"
9+
required: ["browserbaseApiKey", "browserbaseProjectId"]
10+
properties:
11+
browserbaseApiKey:
12+
type: "string"
13+
title: "Browserbase API Key"
14+
description: "The Browserbase API Key to use"
15+
browserbaseProjectId:
16+
type: "string"
17+
title: "Browserbase Project ID"
18+
description: "The Browserbase Project ID to use"
19+
proxies:
20+
type: "boolean"
21+
default: false
22+
description: "Whether or not to use Browserbase proxies"
23+
advancedStealth:
24+
type: "boolean"
25+
default: false
26+
description: "Use advanced stealth mode. Only available to Browserbase Scale Plan users"
27+
modelApiKey:
28+
type: "string"
29+
description: "API key for the custom model provider (e.g., GEMINI_API_KEY)"
30+
modelName:
31+
type: "string"
32+
default: "google/gemini-2.0-flash"
33+
description: "The model to use for Stagehand"
34+
exampleConfig:
35+
browserbaseApiKey: "bb_api_key_example"
36+
browserbaseProjectId: "bb_project_id_example"
37+
proxies: false
38+
advancedStealth: false
39+
modelApiKey: "your_gemini_api_key"
40+
modelName: "google/gemini-2.0-flash"

0 commit comments

Comments
 (0)