File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -276,18 +276,19 @@ can also get all the extra fields on the Pydantic model as a dict with
276
276
277
277
You can directly override the [ httpx client] ( https://www.python-httpx.org/api/#client ) to customize it for your use case, including:
278
278
279
- - Support for proxies
280
- - Custom transports
279
+ - Support for [ proxies] ( https://www.python-httpx.org/advanced/proxies/ )
280
+ - Custom [ transports] ( https://www.python-httpx.org/advanced/transports/ )
281
281
- Additional [ advanced] ( https://www.python-httpx.org/advanced/clients/ ) functionality
282
282
283
283
``` python
284
+ import httpx
284
285
from browserbase import Browserbase, DefaultHttpxClient
285
286
286
287
client = Browserbase(
287
288
# Or use the `BROWSERBASE_BASE_URL` env var
288
289
base_url = " http://my.test.server.example.com:8083" ,
289
290
http_client = DefaultHttpxClient(
290
- proxies = " http://my.test.proxy.example.com" ,
291
+ proxy = " http://my.test.proxy.example.com" ,
291
292
transport = httpx.HTTPTransport(local_address = " 0.0.0.0" ),
292
293
),
293
294
)
You can’t perform that action at this time.
0 commit comments