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 @@ -290,18 +290,19 @@ can also get all the extra fields on the Pydantic model as a dict with
290
290
291
291
You can directly override the [ httpx client] ( https://www.python-httpx.org/api/#client ) to customize it for your use case, including:
292
292
293
- - Support for proxies
294
- - Custom transports
293
+ - Support for [ proxies] ( https://www.python-httpx.org/advanced/proxies/ )
294
+ - Custom [ transports] ( https://www.python-httpx.org/advanced/transports/ )
295
295
- Additional [ advanced] ( https://www.python-httpx.org/advanced/clients/ ) functionality
296
296
297
297
``` python
298
+ import httpx
298
299
from browserbase import Browserbase, DefaultHttpxClient
299
300
300
301
client = Browserbase(
301
302
# Or use the `BROWSERBASE_BASE_URL` env var
302
303
base_url = " http://my.test.server.example.com:8083" ,
303
304
http_client = DefaultHttpxClient(
304
- proxies = " http://my.test.proxy.example.com" ,
305
+ proxy = " http://my.test.proxy.example.com" ,
305
306
transport = httpx.HTTPTransport(local_address = " 0.0.0.0" ),
306
307
),
307
308
)
You can’t perform that action at this time.
0 commit comments