Data Loaders
TXT Loader
This data loader allows loading text files from local storage.
Installation
To use the TXTLoader
, you first need to install the purecpp_extract
Python package:
Initialization
You can initialize the TXTLoader
by providing the path to a .txt
file or a directory containing .txt
files.
Load
Once initialized, use the Load()
method to extract the contents of the files. This method returns a list of Document
objects.
Each Document
contains the following attributes:
metadata
: A dictionary with metadata about the documentpage_content
: The full text content of the document
- If a single file path was provided during initialization, the returned list will contain one
Document
. - If a directory path was provided, the list will contain one
Document
per.txt
file found in the directory.