Skip to content

Commit 45ddfc2

Browse files
feat(api): manual updates
1 parent 77aeeea commit 45ddfc2

2 files changed

Lines changed: 9 additions & 9 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: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ use Stagehand\Core\Exceptions\APIConnectionException;
8181

8282
try {
8383
$response = $client->sessions->start(
84-
browserbaseAPIKey: 'BROWSERBASE_API_KEY',
85-
browserbaseProjectID: 'BROWSERBASE_PROJECT_ID',
84+
browserbaseAPIKey: 'your Browserbase API key',
85+
browserbaseProjectID: 'your Browserbase Project ID',
8686
);
8787
} catch (APIConnectionException $e) {
8888
echo "The server could not be reached", PHP_EOL;
@@ -130,8 +130,8 @@ $client = new Client(maxRetries: 0);
130130

131131
// Or, configure per-request:
132132
$result = $client->sessions->start(
133-
browserbaseAPIKey: 'BROWSERBASE_API_KEY',
134-
browserbaseProjectID: 'BROWSERBASE_PROJECT_ID',
133+
browserbaseAPIKey: 'your Browserbase API key',
134+
browserbaseProjectID: 'your Browserbase Project ID',
135135
requestOptions: RequestOptions::with(maxRetries: 5),
136136
);
137137
```
@@ -152,8 +152,8 @@ Note: the `extra*` parameters of the same name overrides the documented paramete
152152
use Stagehand\RequestOptions;
153153

154154
$response = $client->sessions->start(
155-
browserbaseAPIKey: 'BROWSERBASE_API_KEY',
156-
browserbaseProjectID: 'BROWSERBASE_PROJECT_ID',
155+
browserbaseAPIKey: 'your Browserbase API key',
156+
browserbaseProjectID: 'your Browserbase Project ID',
157157
requestOptions: RequestOptions::with(
158158
extraQueryParams: ['my_query_parameter' => 'value'],
159159
extraBodyParams: ['my_body_parameter' => 'value'],

0 commit comments

Comments
 (0)