llama-index-integrations/readers/llama-index-readers-firestore/README.md
pip install llama-index-readers-firestore
This loader loads from a Firestore collection or a specific document from Firestore. The loader assumes your project already has the google cloud credentials loaded. To find out how to set up credentials, see here.
To initialize the loader, provide the project-id of the google cloud project.
from llama_index.readers.firestore import FirestoreReader
reader = FirestoreReader(project_id="<Your Project ID>")
Load data from a Firestore collection with the load_data method: The collection path should include all previous documents and collections if it is a nested collection.
documents = reader.load_data(collection="foo/bar/abc/")
Load a single document from Firestore with the load_document method:
document = reader.load_document(document_url="foo/bar/abc/MY_DOCUMENT")
Note: load_data returns a list of Document objects, whereas load_document returns a single Document object.
This loader is designed to be used as a way to load data into LlamaIndex.