BraveSearchLoader#
- class langchain_community.document_loaders.brave_search.BraveSearchLoader(query: str, api_key: str, search_kwargs: dict | None = None)[source]#
Load with Brave Search engine.
Initializes the BraveLoader.
- Parameters:
query (str) β The query to search for.
api_key (str) β The API key to use.
search_kwargs (dict | None) β The search kwargs to use.
Methods
__init__
(query,Β api_key[,Β search_kwargs])Initializes the BraveLoader.
A lazy loader for Documents.
aload
()Load data into Document objects.
A lazy loader for Documents.
load
()Load data into Document objects.
load_and_split
([text_splitter])Load Documents and split into chunks.
- __init__(query: str, api_key: str, search_kwargs: dict | None = None)[source]#
Initializes the BraveLoader.
- Parameters:
query (str) β The query to search for.
api_key (str) β The API key to use.
search_kwargs (dict | None) β The search kwargs to use.
- async alazy_load() AsyncIterator[Document] #
A lazy loader for Documents.
- Return type:
AsyncIterator[Document]
- lazy_load() Iterator[Document] [source]#
A lazy loader for Documents.
- Return type:
Iterator[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 BraveSearchLoader