langchain_community.document_loaders.fauna
.FaunaLoader¶
- class langchain_community.document_loaders.fauna.FaunaLoader(query: str, page_content_field: str, secret: str, metadata_fields: Optional[Sequence[str]] = None)[source]¶
Load from FaunaDB.
- query¶
The FQL query string to execute.
- Type
str
- page_content_field¶
The field that contains the content of each page.
- Type
str
- secret¶
The secret key for authenticating to FaunaDB.
- Type
str
- metadata_fields¶
Optional list of field names to include in metadata.
- Type
Optional[Sequence[str]]
Methods
__init__
(query, page_content_field, secret)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, page_content_field: str, secret: str, metadata_fields: Optional[Sequence[str]] = None)[source]¶
- load_and_split(text_splitter: Optional[TextSplitter] = None) List[Document] ¶
Load Documents and split into chunks. Chunks are returned as Documents.
- Parameters
text_splitter – TextSplitter instance to use for splitting documents. Defaults to RecursiveCharacterTextSplitter.
- Returns
List of Documents.