@@ -81,8 +81,8 @@ use Stagehand\Core\Exceptions\APIConnectionException;
8181
8282try {
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
152152use 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