BrowserbaseLoader#

class langchain_community.document_loaders.browserbase.BrowserbaseLoader(
urls: Sequence[str],
text_content: bool = False,
api_key: str | None = None,
project_id: str | None = None,
session_id: str | None = None,
proxy: bool | None = None,
)[source]#

Load pre-rendered web pages using a headless browser hosted on Browserbase.

Depends on browserbase and playwright packages. Get your API key from https://browserbase.com

Methods

__init__(urls[,Β text_content,Β api_key,Β ...])

alazy_load()

A lazy loader for Documents.

aload()

Load data into Document objects.

lazy_load()

Load pages from URLs

load()

Load data into Document objects.

load_and_split([text_splitter])

Load Documents and split into chunks.

Parameters:
  • urls (Sequence[str])

  • text_content (bool)

  • api_key (str | None)

  • project_id (str | None)

  • session_id (str | None)

  • proxy (bool | None)

__init__(
urls: Sequence[str],
text_content: bool = False,
api_key: str | None = None,
project_id: str | None = None,
session_id: str | None = None,
proxy: bool | None = None,
)[source]#
Parameters:
  • urls (Sequence[str])

  • text_content (bool)

  • api_key (str | None)

  • project_id (str | None)

  • session_id (str | None)

  • proxy (bool | None)

async alazy_load() β†’ AsyncIterator[Document]#

A lazy loader for Documents.

Return type:

AsyncIterator[Document]

async aload() β†’ list[Document]#

Load data into Document objects.

Return type:

list[Document]

lazy_load() β†’ Iterator[Document][source]#

Load pages from URLs

Return type:

Iterator[Document]

load() β†’ list[Document]#

Load data into Document objects.

Return type:

list[Document]

load_and_split(
text_splitter: TextSplitter | None = None,
) β†’ list[Document]#

Load Documents and split into chunks. Chunks are returned as Documents.

Do not override this method. It should be considered to be deprecated!

Parameters:

text_splitter (Optional[TextSplitter]) – TextSplitter instance to use for splitting documents. Defaults to RecursiveCharacterTextSplitter.

Returns:

List of Documents.

Return type:

list[Document]

Examples using BrowserbaseLoader