Skip to content

Commit d660a3a

Browse files
feat(api): manual updates
1 parent c21cb20 commit d660a3a

2 files changed

Lines changed: 11 additions & 11 deletions

File tree

.stats.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 7
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/browserbase%2Fstagehand-e52e8d3513159931200e5d4bd32cfdc475fe6e7db6b8015c394f5625b5a3ce1f.yml
3-
openapi_spec_hash: fa597eb985cd1c3ba03acf68d6416857
4-
config_hash: b138dc33d4d0880499266048be517958
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/browserbase%2Fstagehand-705638ac8966569986bd9ebb7c9761bf0016909e9f2753e77ceabb12c8049511.yml
3+
openapi_spec_hash: a8fbbcaa38e91c7f97313620b42d8d62
4+
config_hash: a35b56eb05306a0f02e83c11d57f975f

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ When the library is unable to connect to the API, or if the API returns a non-su
4646
```ruby
4747
begin
4848
session = stagehand.sessions.start(
49-
browserbase_api_key: "BROWSERBASE_API_KEY",
50-
browserbase_project_id: "BROWSERBASE_PROJECT_ID"
49+
browserbase_api_key: "your Browserbase API key",
50+
browserbase_project_id: "your Browserbase Project ID"
5151
)
5252
rescue Stagehand::Errors::APIConnectionError => e
5353
puts("The server could not be reached")
@@ -92,8 +92,8 @@ stagehand = Stagehand::Client.new(
9292

9393
# Or, configure per-request:
9494
stagehand.sessions.start(
95-
browserbase_api_key: "BROWSERBASE_API_KEY",
96-
browserbase_project_id: "BROWSERBASE_PROJECT_ID",
95+
browserbase_api_key: "your Browserbase API key",
96+
browserbase_project_id: "your Browserbase Project ID",
9797
request_options: {max_retries: 5}
9898
)
9999
```
@@ -110,8 +110,8 @@ stagehand = Stagehand::Client.new(
110110

111111
# Or, configure per-request:
112112
stagehand.sessions.start(
113-
browserbase_api_key: "BROWSERBASE_API_KEY",
114-
browserbase_project_id: "BROWSERBASE_PROJECT_ID",
113+
browserbase_api_key: "your Browserbase API key",
114+
browserbase_project_id: "your Browserbase Project ID",
115115
request_options: {timeout: 5}
116116
)
117117
```
@@ -145,8 +145,8 @@ Note: the `extra_` parameters of the same name overrides the documented paramete
145145
```ruby
146146
response =
147147
stagehand.sessions.start(
148-
browserbase_api_key: "BROWSERBASE_API_KEY",
149-
browserbase_project_id: "BROWSERBASE_PROJECT_ID",
148+
browserbase_api_key: "your Browserbase API key",
149+
browserbase_project_id: "your Browserbase Project ID",
150150
request_options: {
151151
extra_query: {my_query_parameter: value},
152152
extra_body: {my_body_parameter: value},

0 commit comments

Comments
 (0)